L leitor79 Active Member Licensed User Longtime User Sep 3, 2018 #1 Hi, When I compile and install my app, instead of showing the name, the package.name is shown... Where should I start looking? Regards!
Hi, When I compile and install my app, instead of showing the name, the package.name is shown... Where should I start looking? Regards!
Erel B4X founder Staff member Licensed User Longtime User Sep 3, 2018 #2 Set the manifest editor to the default code: B4X: AddManifestText( <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>) SetApplicationAttribute(android:icon, "@drawable/icon") SetApplicationAttribute(android:label, "$LABEL$") CreateResourceFromFile(Macro, Themes.DarkTheme) Upvote 0
Set the manifest editor to the default code: B4X: AddManifestText( <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="26"/> <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true"/>) SetApplicationAttribute(android:icon, "@drawable/icon") SetApplicationAttribute(android:label, "$LABEL$") CreateResourceFromFile(Macro, Themes.DarkTheme)
L leitor79 Active Member Licensed User Longtime User Sep 3, 2018 #3 Thank you very much, Erel! I think I've commented too much... Upvote 0