Android Question Check for DebugMode

MarcRB

Active Member
Licensed User
Longtime User
Is there a way to check if the app runs in debugmode?
Something like....
B4X:
If IsDebug = true then
 'Fill logincredentials so you don't waste time during debugging
  txtUser.text = "Marc"
  txtPassword.text = "527Gf42d#1"
End if
 
Top