Android Question Build Configurations & App label

luke2012

Well-Known Member
Licensed User
Longtime User
Hi all,
I have one project that compile two apk with two different package names.
The App name (label) that I see in App drawer and when I open the App is the same for both compilations.

How to change the App name (label) when the build configuration change?

Thanks in advance for your reply :)
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
#Region  Project Attributes
#if Full
    #ApplicationLabel: B4A Example FULL
#Else If WITH_ADS OR (TRIAL And IN_APP)
'...
#Else
'...
#End If
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
#End Region
 
Last edited:
Upvote 0
Top