728x90
반응형
출시를 위해 Google Play Console 에 App 등록 시,
기존에는 .apk 파일이 등록되었는데 2021년 8월 부터 Abb 파일로만 등록이 가능하다고 한다.
* reference : https://android-developers.googleblog.com/2021/06/the-future-of-android-app-bundles-is.html
# location : [project]
$ react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle
# location : [project]/android
$ ./gradlew bundleRelease
위와 같이 번들링하면 아래 위치에 .abb 파일이 생성된다.
[project]/android/app/build/outputs/bundle/release
728x90
반응형
'React Native > React Native_etc' 카테고리의 다른 글
[React Native -android] Google Play Console 앱 서명 키 인증서 vs 업로드 키 인증서 & Firebase 연동 (0) | 2021.10.01 |
---|---|
[React Native - android] Google Play Store 출시를 위한 keystore 생성 및 등록 (0) | 2021.10.01 |
[React Native] release 버전에서 axios 사용 시 에러 발생 해결 (0) | 2021.09.15 |
[React Native] 오픈소스 라이선스 고지 방법 (0) | 2021.09.14 |
[React Native] 초기 설치 및 간단하게 babel.config.js 설정 (3) | 2021.08.27 |