[React Native] APK 파일 추출하기
Windows에서 React Native로 Android APK 추출하기
- assets 폴더 확인
android/app/src/main/assets 폴더가 있는지 확인하고, 없으면 생성합니다.
- bundle 파일 생성
명령어를 통해 번들 파일을 생성합니다. 사용 명령어:
npx react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
위 명령어 실행 후 assets 폴더에 index.android.bundle 파일이 생성됩니다.
- vscode에서 프로젝트 빌드
Visual Studio Code에서 프로젝트를 빌드합니다. 사용 명령어:
npx react-native run-android
- 추출된 .apk 파일 핸드폰으로 옮기기
android/app/build/outputs/apk/debug 경로에 있는 app-debug.apk 파일을 핸드폰으로 옮깁니다. Slack이나 메일 등을 사용해 파일을 전송한 후 다운로드 및 설치합니다.