dbalman Member Licensed User Longtime User Oct 6, 2016 #1 Is it possible to detect debug mode by getting UIApplicationLaunchOptions?
Erel B4X founder Staff member Licensed User Longtime User Oct 6, 2016 #2 You can use this code to detect debug mode: B4X: #If DEBUG Dim IsDebug As Boolean = True #Else Dim IsDebug As Boolean = False #End If B4X: If IsDebug Then ... Upvote 0
You can use this code to detect debug mode: B4X: #If DEBUG Dim IsDebug As Boolean = True #Else Dim IsDebug As Boolean = False #End If B4X: If IsDebug Then ...
dbalman Member Licensed User Longtime User Oct 6, 2016 #3 Excellent! I was unaware that conditional statements could be placed in Process_Globals. It works perfectly. Thanks! Upvote 0
Excellent! I was unaware that conditional statements could be placed in Process_Globals. It works perfectly. Thanks!
Erel B4X founder Staff member Licensed User Longtime User Oct 7, 2016 #4 Conditional statements can be placed anywhere you like. Including in the manifest editor and designer script. Upvote 0
Conditional statements can be placed anywhere you like. Including in the manifest editor and designer script.