JakeBullet70 Well-Known Member Licensed User Longtime User Mar 2, 2015 #1 Hi all. How can I tell if my b4j app is in debug mode? Thanks
Erel B4X founder Staff member Licensed User Longtime 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 Upvote 0
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