With the Flutter, you sometimes need to fill in IOS and Android information on the SDK platform.

IOS bundle id

Open the ios/Runner. Xcodeproj/project. PRODUCT_BUNDLE_IDENTIFIER pbxproj search

PRODUCT_BUNDLE_IDENTIFIER = com.example.flutterApp;
Copy the code

The following value is the bundle ID.

Android application name package

Open the android/app/build. Gradle

defaultConfig { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). / / Application package name applicationId "com.example.flutter_app" minSdkVersion 21 targetSdkVersion 29 versionCode flutterVersionCode.toInteger() versionName flutterVersionName }Copy the code

The value following applicationId is the application package name