Skip to content
This repository was archived by the owner on Jan 15, 2021. It is now read-only.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.idea/
node_modules/
platforms/
plugins/
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#NO LONGER NEEDED....
#NO LONGER NEEDED.......
6 changes: 4 additions & 2 deletions build_droid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ ERROR_ABORT() {

cordova platform remove ios;ERROR_ABORT
cordova platform remove android;ERROR_ABORT
cordova plugin remove io.jxcore.node;ERROR_ABORT
cordova plugin add io.jxcore.node/;ERROR_ABORT
cordova platform add android;ERROR_ABORT
cordova build android --release --device;ERROR_ABORT

echo "copying Android build for CI"
rm -rf android-release-unsigned.apk
cp -R ../testBuild/platforms/android/build/outputs/apk/android-release-unsigned.apk android-release-unsigned.apk
2 changes: 0 additions & 2 deletions build_ios.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@ ERROR_ABORT() {

cordova platform remove ios;ERROR_ABORT
cordova platform remove android;ERROR_ABORT
cordova plugin remove io.jxcore.node;ERROR_ABORT
cordova plugin add io.jxcore.node/;ERROR_ABORT
cordova platform add ios;ERROR_ABORT
cordova build ios --device;ERROR_ABORT
2 changes: 1 addition & 1 deletion mobile_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"ios": "platforms/ios/build/device/HelloWorld.app",
"android": "platforms/android/build/outputs/apk/android-release-unsigned.apk"
},
"target": "all",
"target": "android",
"priority": "normal",
"csname": { "android": "com.example.hello", "ios": "com.example.hello" },
"timeout": 150,
Expand Down