-
[Flutter] Play Store 에서 출시된 App 버전 높이기Development/Flutter 2022. 8. 22. 21:56728x90
배포 테스트에 사용한 어플이 1.0.0 버전이 검토를 마치고 정식으로 출시 되었다.
https://play.google.com/store/apps/details?id=com.rkm.compassflutter
문제
이 프로젝트를 1.0.0 -> 1.0.1 버전으로 버전으로 변경하여 스토어 배포하는 방법을 알아본다.
버전 내용 수정없이 .aab 파일을 업로드 하면 google play console에서
버전을 높이는 방법은 아래와 같다.
해결방법
1. pubspec.yaml
##version: 1.0.0+1 //이전 버전 version: 1.0.1+2 //수정된 버전
1.0.1은 수정되는 버전이고 +2는 2번째 수정이라는 의미이다.
2. android/app/build.gradle
def flutterVersionCode = localProperties.getProperty('flutter.versionCode') if (flutterVersionCode == null) { flutterVersionCode = '2' //버전업 횟수 } def flutterVersionName = localProperties.getProperty('flutter.versionName') if (flutterVersionName == null) { flutterVersionName = '1.0.1' //수정되는 버전 }
3. android/local.properties
flutter.versionName=1.0.1 //수정되는 버전 flutter.versionCode=2 //버전업 횟수
4. 배포 파일 .aab파일 생성
flutter build appbundle
<자세한 내용은 링크 참고>
5. 새 버전 등록하기
google play store 해당 프로젝트에 들어가서 출시 - 프로덕트 에서 4. 에서 생성한 .aab 파일을 업로드 한다.
6.업데이트 정보 등록
출시 노트에 추가된 내용을 수정하고 "버전검토" 버튼을 누른다.
7. 출시시작
"프로덕션 트랙으로 출시 시작" 버튼을 누르면
google에서 내용을 확인하여 플레이 스토어 적용될 것이다.
8. 버전업 확인
1시간이 지나고 스토어에 들어가보니 정상적으로 적용되어 있다.
'Development > Flutter' 카테고리의 다른 글
[Flutter] GetX Package 설치 (0) 2022.08.25 [Flutter] web 으로 실행 (0) 2022.08.25 [Flutter] Android 배포파일 .aab 파일 생성 (0) 2022.08.22 [Flutter] IOS, Android App icon 적용 (0) 2022.08.22 [Flutter] APK 파일 생성하기 (0) 2022.08.22