Android Question setup shows package name instead of app name

leitor79

Active Member
Licensed User
Longtime User
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
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
Top