Change App Name & ID
Change App Name
<application
android:name="io.flutter.app.FlutterApplication"
android:label="Replace with your App name"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"><key>CFBundleName</key>
<string>Replace with your App name</string>Change Package Name
defaultConfig {
applicationId "Replace with your package name"
minSdkVersion 18
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}
Last updated