모든것에 도전하라~~~

홀로서기에 정답은 없다. 최선만이 있을 뿐이다..

직접만든 여행지도 방방곡곡 자세히보기

프로그램 개발/앱 출시

구글 플레이콘솔에서 같은 앱을 다른 이름으로 출시하고 싶을때

bluelegend 2024. 12. 10. 10:07

build.gradle 파일에서 앱 ID 변경한다.

 

- 경로: android/app/build.gradle

  • defaultConfig {
       applicationId "com.your_new_project_name"
       ...
    }

 

defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId = "net.bluelegend.tourfriend"
        // You can update the following values to match your application needs.
        // For more information, see: https://flutter.dev/to/review-gradle-config.
        minSdk = flutter.minSdkVersion
        targetSdk = flutter.targetSdkVersion
//        versionCode = flutter.versionCode
//        versionName = flutter.versionName
        versionCode = 6    // 앱의 버전 코드: 앱이 업데이트 될때마다 증가
        versionName = "6" // 사용자에게 보여지는 버전 이름
    }

 

위 화면에서 applicationId = "net.bluelegend.tourfriend" 의 값을 바꿔준다.

반응형