React Native/React Native_etc
[React Native - android] .abb 추출하기
bocoder
2021. 9. 30. 11:14
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
반응형