Android Question How to change app shortcut name?

BitsAndBytes

Active Member
Licensed User
Each time one user install my app, android creates a shortcut with packagename instead of app label
 

DonManfred

Expert
Licensed User
Longtime User
B4X:
#Region  Project Attributes
    #ApplicationLabel: B4A Example
    #VersionCode: 1
    #VersionName:
    'SupportedOrientations possible values: unspecified, landscape or portrait.
    #SupportedOrientations: unspecified
    #CanInstallToExternalStorage: False
#End Region
Set the ApplicationLabel.....
 
Upvote 0

BitsAndBytes

Active Member
Licensed User
I all ready did it, also this is my manifest file
B4X:
AddManifestText
(
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="15"/>

<supports-screens android:largeScreens="true"

  android:normalScreens="true"
  android:smallScreens="true"
  android:anyDensity="true"/>)
  
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
SetApplicationAttribute(android:theme,"@android:style/Theme.Holo.Light.NoActionBar.Fullscreen")

But android after install at home screen widget places a shortcut with my package name and not with application label.
 
Upvote 0
Top