[Android]獲取其他應用的logcat

大搜車-自娛發表於2013-11-19
android 系統 4.1+,對logcat的讀取做了限制。
在裝置中,使用

Runtime.getRuntime().exec("logcat");
無法拿到其它程式的logcat。

以下是解決方案,但是需要root許可權。

新增某一應用的許可權:
pm grant org.jtb.alogcat.donate android.permission.READ_LOGS

新增所有應用的許可權:
chmod 04755 /system/bin/logcat

摘自:
http://android.stackexchange.com/questions/28857/how-can-i-access-android-log-files-on-my-nexus-7-without-root-access

相關文章