Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- FLUTTER
- Firebase
- Notification
- 이미지
- window
- 개발자
- geofencing
- shorebird
- IOS
- UIButton
- MacOS
- error
- darkmode
- rxswift
- Code
- Session
- appstore
- iOS16
- SwiftUI
- Apple
- github
- JPA
- Realm
- Archive
- 웹뷰
- Swift
- Xcode
- mac
- 한글
- Git
Archives
- Today
- Total
EEYatHo 앱 깎는 이야기
Flutter ) ShoreBird 배포가이드 본문
OTA가 아닌, 새로운 버전을 스토어에 배포할 경우 shorebird Release
- pubspec.yaml 에서 version 수정 후 저장 (ex. version: 1.0.0+4 -> 1.0.1+5)
- iOS의 Xcode 빌드 버전이나, Android의 local.properties 버전이 바로 바뀌지 않음
- 앞의 버전이 바뀌어도 빌드번호는 올라가야함 (Android는 중복 빌드버전 금지)
- android 배포
- shorebird release android --artifact apk 실행
- 이 명령어 실행시 Android의 local.properties 버전이 바뀜
- 이 파일로 Firebase App Distribution 배포 진행 build/app/outputs/apk/release/app-release.apk
- 이 파일로 PlayStore 배포 진행 build/app/outputs/bundle/release/app-release.aab
- shorebird release android --artifact apk 실행
- iOS 배포
- shorebird release ios 실행
- 이 명령어 실행시 Xcode의 빌드 버전이 바뀜
- Xcode15 에러 발생시, 16.1로 변경 ( sudo xcode-select -s /Applications/Xcode16.1.app/Contents/Developer )
- build/ios/archive/Runner.xcarchive 파일 실행 (organizer 노출)
- custom > Manage Version and Build Number 체크 해제 후 Distribute App 진행
- shorebird release ios 실행
OTA 배포 할 경우, 해당 릴리즈에 Patch를 생성 (shorebird patch)
- 릴리즈 생성 직후는 패치할 필요 없음. 아무 패치 없는 릴리즈가 기본.
- shorebird patch android
- shorebird patch ios
- 이후 앱 실행시, 재실행 해달라는 업데이트 팝업 노출 재실행하면 Patch 적용됨
(https://eeyatho.tistory.com/302 여기 글대로 팝업노출 작업을 했을 경우.)
Shorebird 문제 생겼을 경우, flutter 기본 배포 방법
flutter build apk --release --verbose
flutter build ios --release --verbose
반응형
'Flutter > ShoreBird' 카테고리의 다른 글
Flutter ) ShoreBird 활용 강제 업데이트 적용 (0) | 2025.04.14 |
---|---|
Flutter ) ShoreBird 중요한 것들 정리 (0) | 2025.04.14 |
Flutter ) CodePush(ShoreBird) 개요 (0) | 2025.04.14 |
Comments