316634f5b7
* created react base and updated build to use android sdk 23 * add nodejs install step to travis build script * added simple build script to create the react native bundle before the buildozer APK build
5 lines
207 B
Bash
Executable file
5 lines
207 B
Bash
Executable file
#!/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
|