blob: 548234e60207ad4934ecccc9aa7744d3fba1cf1c (
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 pm clear jogamp.android.launcher
adb $* shell pm clear com.jogamp.common
adb $* shell pm clear com.jogamp.openal
adb $* shell pm clear com.jogamp.opengl
adb $* shell pm clear com.jogamp.opencl
adb $* shell pm clear com.jogamp.openal.test
adb $* shell pm clear com.jogamp.opengl.test
adb $* shell pm clear com.jogamp.opencl.test
|