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