Skip to content
Discussion options

You must be logged in to vote

CFBundleDisplayName should work for the iOS side (specified either in the project's .xcconfig as INFOPLIST_KEY_CFBundleDisplayName (see https://github.com/skiptools/skipapp-showcase/blob/main/Darwin/Showcase.xcconfig), or the Darwin/Info.plist):

INFOPLIST_KEY_CFBundleDisplayName = App Name

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:

    <application
        android:label="Skip Showcase"
        android:name=".AndroidAppMain"
        android:allowBackup="true"
        android:supportsRtl="true"

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@lexum0
Comment options

@lexum0
Comment options

@marcprux
Comment options

@lexum0
Comment options

Answer selected by marcprux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants