JakeBullet70 Well-Known Member Licensed User Mar 2, 2015 #1 Hi all. How can I tell if my b4j app is in debug mode? Thanks
Erel Administrator Staff member Licensed User Mar 2, 2015 #2 The DEBUG compilation symbol will be active. You can do something like: B4X: #IF DEBUG Public Const debugMode As Boolean = True #End If #If RELEASE Public Const debugMode As Boolean = False #End If
The DEBUG compilation symbol will be active. You can do something like: B4X: #IF DEBUG Public Const debugMode As Boolean = True #End If #If RELEASE Public Const debugMode As Boolean = False #End If