업그레이드 앱 배포하기
구글 플레이에 앱 배포 후 코드 수정으로 bundle
파일 혹은 apk
파일을 업데이트 시키는 경우.
pubspec.yaml
version: 1.0.1+2
수정할 때마다 +1씩 늘려줘야 한다.
android/app/biild.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'
}
flutterVersionName
은 구글플레이 상에서 이용자들에게 보이는 버전을 말한다.flutterVersionCode
은 pubspec.yaml
과 마찬가지로 수정할 때마다 +1씩 늘려줘야 한다.
android/local.properties
flutter.buildMode=release
flutter.versionName=1.0.1
flutter.versionCode=2
마찬가지로 biild.gradle
와 pubspec.yaml
파일과 일치시켜 적어준다.
'ETC > Flutter' 카테고리의 다른 글
[flutter] appBar Icon 간격 줄이기 (0) | 2021.10.18 |
---|---|
[flutter] 뒤로가기 두번 클릭으로 앱 종료하기 (0) | 2021.10.18 |
[flutter] setState 란? (0) | 2021.10.18 |
[flutter] apk 추출하기 (apk 추출하기 3 of 3) (0) | 2021.10.18 |
[flutter] 앱 난독화 및 압축하기 (apk 추출하기 2 of 3) (0) | 2021.10.18 |
[flutter] 앱 서명하기 (apk 추출하기 1 of 3) (0) | 2021.10.18 |
댓글