1. Home
  2. Docs
  3. Listar App
  4. Mobile App
  5. App Name & Icons

App Name & Icons

  • Listar FluxPro
  • Listar Pro

App Name

Android

Open file ./source/android/app/src/main/AndroidManifest.xml

Search and replace the variable android:label

<application android:label="Listar FluxPro"></application>  

After changed

<application android:label="Your Application Name"></application>  

iOS

Open file ./ios/Runner/Info.plist

Search and replace the variable for key CFBundleName

<key>CFBundleName</key>
<string>Listar FluxPro</string>  

After changed

<key>CFBundleName</key>
<string>Your Application Name</string>  

App Bundle ID

Android

Search and replace the string “com.huynh.listar_flutter_pro” in the folder ./android/…

Change applicationId

Change ./android/app/src/main/kotlin/.. folder match with new applicationId name.

Please refer the example below for understand before and after changing.

Before

Bundle ID: com.huynh.listar_flutter_pro

Folder: ./android/app/src/main/kotlin/com/huynh/listar_flutter_pro

After change

Bundle ID: com.steve.listarapp

Folder: ./android/app/src/main/kotlin/com/steve/listarapp

iOS

Use the Xcode application → open ios folder and edit the Bundle Identifier

iOS chang app bundle ID

App Icon

Android

Replace the image on folders ./app/src/main/res/drawable*

Change the android app icon

iOS

Change the iOS app icon

App Name

Android

Open the folder ./source/android/app/src/main/res/values/strings.xml

<resources>
    <string name="app_name">Listar Pro</string>
</resources>

After change

<resources>
    <string name="app_name">Your Application Name</string>
</resources>

iOS

Open file ./ios/Runner/Info.plist

Search and replace the variable for key CFBundleName

<key>CFBundleName</key>
<string>Listar Pro</string>

After changed

<key>CFBundleName</key>
<string>Your Application Name</string>

App Bundle ID

Search and replace the string com.listarPro in folder./source/android/*

Change applicationId

iOS

Use the Xcode application → open ./ios/Runner.xcodeproj and edit the Bundle Identifier

App Icon

Android

Replace the image on folders ./app/src/main/res/drawable*

Change the android app icon

iOS

Change the iOS app icon