blob: 699dbefbefa7c25c03e060610b07ac92569516ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#! /bin/sh
echo jogamp process running
adb $* shell ps | grep jogamp
adb $* shell am force-stop jogamp.android.launcher
adb $* shell am force-stop com.jogamp.common
adb $* shell am force-stop com.jogamp.openal
adb $* shell am force-stop com.jogamp.opengl
adb $* shell am force-stop com.jogamp.opencl
adb $* shell am force-stop com.jogamp.openal.test
adb $* shell am force-stop com.jogamp.opengl.test
adb $* shell am force-stop com.jogamp.opencl.test
|