BitsAndBytes Active Member Licensed User Jun 10, 2016 #1 Each time one user install my app, android creates a shortcut with packagename instead of app label
DonManfred Expert Licensed User Longtime User Jun 10, 2016 #2 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
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.....
BitsAndBytes Active Member Licensed User Jun 10, 2016 #3 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
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.
Erel B4X founder Staff member Licensed User Longtime User Jun 12, 2016 #4 Try to uninstall the existing app and install it again. Maybe it cached the old value. If it doesn't help restart the device after you uninstall the app. Upvote 0
Try to uninstall the existing app and install it again. Maybe it cached the old value. If it doesn't help restart the device after you uninstall the app.