Android Question Warning for unused variables [not a real bug]

klaus

Expert
Licensed User
Longtime User
If you want to hide given warnings in a module you can use #IgnoreWarnings: x1, x2 ...
x1 and x2 are the warning numbers.
You can add the line somewhere on top of the module code.
B4X:
#Region  Activity Attributes
   #FullScreen: False
   #IncludeTitle: True
   #IgnoreWarnings: 10, 12
#End Region
 
Upvote 0
Top