|
If you create an app called "My App" it creates the app as MyApp. Skip.env states How do you make the app show up as "My App" with a space instead of all together? |
Replies: 1 comment 4 replies
|
But that won't do anything on the Android side. For the Android side, you need to do it in the <application
android:label="Skip Showcase"
android:name=".AndroidAppMain"
android:allowBackup="true"
android:supportsRtl="true"
android:enableOnBackInvokedCallback="true"
android:icon="@mipmap/ic_launcher"> |
CFBundleDisplayNameshould work for the iOS side (specified either in the project's.xcconfigasINFOPLIST_KEY_CFBundleDisplayName(see https://github.com/skiptools/skipapp-showcase/blob/main/Darwin/Showcase.xcconfig), or theDarwin/Info.plist):But that won't do anything on the Android side. For the Android side, you need to do it in the
AndroidManifest.xml(see https://github.com/skiptools/skipapp-showcase/blob/main/Android/app/src/main/AndroidManifest.xml#L46C1-L53C1), like: