To rename this app from flutter bond to Jalsa
app for example
-
install this package Rename
flutter pub global activate rename
-
run this command to update
packageId
for Android andbundleId
for iOSrename --bundleId sa.app.jalsa
-
run this command to update app name for android app
rename --appname "Jalsa"
-
we need manually to update
bundleId
andapp name
for ios only, in xcode for each build configuration.open ios/Runner.xcworkspace
- select Runner target
- select build settings tab
- search for
PRODUCT_BUNDLE_IDENTIFIER
and update it for each build configuration.
-
open
android/app/src/debug/AndroidManifest.xml
and update package element -
open
android/app/src/main/AndroidManifest.xml
and update package element -
open
android/app/src/profile/AndroidManifest.xml
and update package element -
rename
android/main/kotlin/com/example/bond
directory toandroid/main/kotlin/sa/app/jalsa
-
open
pubspec.yaml
update name & descriptionname: jalsa description: Jalsa Based Project.
-
find and replace all
package:bond
topackage:jalsa
Final result for product bundle identifier
Configuration | PRODUCT_BUNDLE_IDENTIFIER |
---|---|
Debug-production | sa.app.jalsa |
Debug-staging | sa.app.jalsa.staging |
Release-production | sa.app.jalsa |
Release-staging | sa.app.jalsa.staging |