유블로그

[React-Native] 리액트 네이티브 프로젝트 APK 추출 본문

React

[React-Native] 리액트 네이티브 프로젝트 APK 추출

yujeong kang 2021. 4. 30. 12:15
$ react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle
$ 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/

리액트 네이티브 프로젝트 폴더에서 위 명령어 차례로 입력 후

 

안드로이드 프로젝트에서

누르면

 

C:\프로젝트폴더\frontend\android\app\build\outputs\apk\debug

이 위치에 app-debug.apk 파일이 생긴다!!!!

 

에뮬레이터에 드래그앤드롭으로 설치할 수 있고 실제 기기에서 설치도 가능하다.