diff options
author | Sven Gothel <[email protected]> | 2012-03-18 09:20:51 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-03-18 09:20:51 +0100 |
commit | 6e732314105b12ef92a09c1db3823a55e9a39f4f (patch) | |
tree | d79edeb08c4cbcc592b1ac91765c59bc4e71166d /make | |
parent | f34a002adf9bf799ebc748578fddb7ec58ac589b (diff) |
Added adb install files
Diffstat (limited to 'make')
-rwxr-xr-x | make/scripts/adb-install-all-armv7.sh | 2 | ||||
-rwxr-xr-x | make/scripts/adb-reinstall-all-armv7.sh | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/make/scripts/adb-install-all-armv7.sh b/make/scripts/adb-install-all-armv7.sh new file mode 100755 index 0000000..249f16f --- /dev/null +++ b/make/scripts/adb-install-all-armv7.sh @@ -0,0 +1,2 @@ +adb $* install ../build-android-armv7/jogamp.android-launcher.apk +adb $* install ../build-android-armv7/gluegen-rt.apk diff --git a/make/scripts/adb-reinstall-all-armv7.sh b/make/scripts/adb-reinstall-all-armv7.sh new file mode 100755 index 0000000..2cb7713 --- /dev/null +++ b/make/scripts/adb-reinstall-all-armv7.sh @@ -0,0 +1,5 @@ +sdir=`dirname $0` + +$sdir/adb-uninstall-all.sh $* +$sdir/adb-install-all-armv7.sh $* + |