Dart & Flutter

[Flutter/Android] 'com.example' 이(가) 제한된 상태이므로 다른 패키지 이름을 사용해야 합니다.

ju_young 2023. 4. 22. 00:12
728x90

appbundle을 업로드하면 'com.example' 이(가) 제한된 상태이므로 다른 패키지 이름을 사용해야 합니다. 라는 문장이 뜨는데 이것은 build.gradle의 applicationId와 AndroidManifest.xml의 pakage를 수정해주면 된다.

 

먼저 android>app>build.gradle을 열어서 다음과 같이 만들고 싶은 applicationId로 수정한다.

    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId "com.pomotimer.jade.app"
        // You can update the following values to match your application needs.
        // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
        minSdkVersion 19
        targetSdkVersion flutter.targetSdkVersion
        versionCode flutterVersionCode.toInteger()
        versionName flutterVersionName
        multiDexEnabled true
    }

 

그리고 android>app>src>main>AndroidManifest.xml 을 열어서 pakage를 applicationId와 같게 수정해준다.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.pomotimer.jade.app">
...

 

728x90