diff options
Diffstat (limited to 'make/scripts/adb-launch-activity.sh')
-rw-r--r-- | make/scripts/adb-launch-activity.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/make/scripts/adb-launch-activity.sh b/make/scripts/adb-launch-activity.sh new file mode 100644 index 000000000..84399520e --- /dev/null +++ b/make/scripts/adb-launch-activity.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +#ANAME="com.jogamp.opengl.test/com.jogamp.opengl.test.android.NEWTGenericActivity" +#ANAME="com.jogamp.android.launcher/com.jogamp.android.launcher.NEWTLauncherActivity2" +ANAME="com.jogamp.opengl.test/com.jogamp.opengl.test.android.NEWTGearsES2ActivityLauncher" + +adb $* shell "setprop log.redirect-stdio true ; setprop log.redirect-stderr true ; \ + am start -a android.intent.action.MAIN -n $ANAME" + + + |