Note: Please make a copy of the project before following the instructions below. Just incase the commands doesn't work as intended.
/android/app/src/main/AndroidManifast.xml
and change the application label.<application
android:name="io.flutter.app.FlutterApplication"
android:label="Replace with your App name"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"
>
/android/app/build/gradle
and change the applicationId
value.defaultConfig {
applicationId "Replace with your package name"
minSdkVersion 18
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
/android/app/src/main/AndroidManifest.xml
, /android/app/src/profile/AndroidManifest.xml
, /android/app/src/debug/AndroidManifest.xml
and change the package name.<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="Replace with your package name"
>
/android/app/src/main/kotlin
folder.subfolders
to match your new package name.MainActivity.kt
file, please update the package
id.