728x90
안드로이드 앱 심사를 위해 버전 생성 후 업로드 할 때
"버전 코드는 이미 사용되었습니다. 다른 버전 코드를 사용해 보세요." 라고 하면서
업로드가 안되는 경우가 있습니다.
이런 경우 {프로젝트 디렉토리}/android/app/build.gradle 에서 버전 정보를 수정해줘야 합니다.
[참고 안드로이드 aab 빌드파일 만들기 ]
2024.08.31 - [Develop/Flutter] - [Flutter 플러터] 안드로이드 Play Store 앱 배포를 위해 aab 파일 만들기 - MAC
{프로젝트 디렉토리}/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
'Develop > Flutter' 카테고리의 다른 글
[Flutter] 커스터마이징 네비게이션 바 convex_bottom_bar 쉽게 사용해보기 (13) | 2024.09.28 |
---|---|
[Flutter] flutter create 명령어 옵션 정리 및 예제 (9) | 2024.09.28 |
[Flutter 플러터] 패키지명 변경 시 android 수정해야 할 내용 feat.FATAL EXCEPTION: main (2) | 2024.09.17 |
[Flutter 플러터] SafeArea 위젯 간단 설명과 사용법 (6) | 2024.09.01 |
[Flutter 플러터] 안드로이드 Play Store 앱 배포를 위해 aab 파일 만들기 - MAC (3) | 2024.08.31 |