This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActivityManager am = (ActivityManager) getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE); | |
for (ActivityManager.RunningAppProcessInfo service : am.getRunningAppProcesses()) { | |
if (service.processName.equals("com.android.test")) { | |
android.os.Process.killProcess(service.pid); | |
break; | |
} | |
} |
2. Android process 죽이는 방법 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Runtime.getRuntime().exec("am force-stop com.android.test"); |