File: android.sh

package info (click to toggle)
crossguid 0.0%2Bgit200150803-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 236 kB
  • sloc: cpp: 321; xml: 48; sh: 28; makefile: 23; java: 18
file content (10 lines) | stat: -rwxr-xr-x 330 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

pushd android
ndk-build clean || { exit 1; }
ndk-build || { exit 1; }
ant debug || { exit 1; }
adb uninstall ca.graemehill.crossguid.testapp || { exit 1; }
adb install bin/TestApp-debug.apk || { exit 1; }
adb shell am start -n ca.graemehill.crossguid.testapp/ca.graemehill.crossguid.testapp.MainActivity
popd