Android Question App Name Under Icon

Marcelo Herrera

Member
Licensed User
Longtime User
Hello,

I was wondering how would you change the name of the app that will show under the icon. I have it as B4A Example. I changed the manifest to be

setapplicationattribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "AppName")

but it is still shown the B4A example name.

Any help will be appreciated.
 

klaus

Expert
Licensed User
Longtime User
Change the ApplicationLabel parameter in the Project Attributes region on top of the Main module code.
B4X:
#Region  Project Attributes
    #ApplicationLabel: B4A Example
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
#End Region
 
Upvote 0
Top