- 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 ./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
App Icon
Android
Replace the image on folders ./app/src/main/res/drawable*
iOS
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/*
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*