Develop/Flutter

[Flutter 플러터] 안드로이드 심사 중 "버전 코드는 이미 사용되었습니다. 다른 버전 코드를 사용해 보세요." 해결방법

issuemaker99 2024. 9. 17. 00:09
728x90

안드로이드 앱 심사를 위해 버전 생성 후 업로드 할 때

"버전 코드는 이미 사용되었습니다. 다른 버전 코드를 사용해 보세요." 라고 하면서

업로드가 안되는 경우가 있습니다.

이런 경우 {프로젝트 디렉토리}/android/app/build.gradle 에서 버전 정보를 수정해줘야 합니다.

 

[참고 안드로이드 aab 빌드파일 만들기 ]

2024.08.31 - [Develop/Flutter] - [Flutter 플러터] 안드로이드 Play Store 앱 배포를 위해 aab 파일 만들기 - MAC

 

[Flutter 플러터] 안드로이드 Play Store 앱 배포를 위해 aab 파일 만들기 - MAC

앱 디지털 서명Google Play 스토어에 출시하기 위해서는 반드시 앱에 디지털 서명을 해야 합니다.디지털 서명을 진행한 후 Play Console에 추출한 AAB 파일을 업로드 해야 합니다. 1. 먼저 Java 가 설치

issuemaker99.tistory.com

 

 

{프로젝트 디렉토리}/android/app/build.gradle 에서 버전 정보 수정 

versionCode 와 versionName 를 수정 합니다. 

android {
    ...
	...
    
    defaultConfig {
        // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
        applicationId = "com.taekistyle.avg_price"
        // You can update the following values to match your application needs.
        // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
        minSdk = flutter.minSdkVersion
        targetSdk = flutter.targetSdkVersion
        versionCode = 4
        versionName = "1.0.0"
    }
    
    ...
    ...
}

안드로이드 버전

LIST