Android Question IDE Warnings

wonder

Expert
Licensed User
Longtime User
Hi!

Is there a way to suppress or acknowledge the warnings (like unused variables) in the IDE?
 

mangojack

Expert
Licensed User
Longtime User
as a last resort ...

B4X:
#Region Module Attributes
   #FullScreen: True
   #IncludeTitle: False
   

   #IgnoreWarnings: 9, 10, 12, 26, 28

#End Region
 
Upvote 0

mangojack

Expert
Licensed User
Longtime User
Upvote 0

wonder

Expert
Licensed User
Longtime User
You can also put "ignore" in a comment on the line that is eliciting the warning, that way you don't have to ignore all warnings of a certain type.
Awesome, thanks!! :)
 
Upvote 0
Top