6 lines
207 B
Bash
6 lines
207 B
Bash
|
#!/bin/sh
|
||
|
cd app
|
||
|
react-native bundle --platform android --dev false --entry-file index.js --bundle-output ../src/main/assets/index.android.bundle --assets-dest ../src/main/res/
|
||
|
cd ..
|
||
|
buildozer android debug
|