Then I have to make so that I can distinguish between Lite and Pro version:
Main-Activity
B4X:
Sub Activity_Create(FirstTime As Boolean)
#Region Conditional Compilation
#If lite
#ApplicationLabel: App-Lite
'Starter.IsProVersion = False
#End If
#If Pro
#ApplicationLabel: App-Pro
'Starter.IsProVersion = True
#End If
#End Region
...
End Sub
Starter-Service
B4X:
Sub Service_Create
#Region Conditional Compilation
#If lite
IsProVersion = False
#End If
#If Pro
IsProVersion = True
#End If
#End Region
If Not(IsProVersion) Then
...
End If
...
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.