1
我通過以編程方式閱讀和分析/data/anr/traces.txt來收集ANR信息。它在Android N之前工作得很好。/data/anr/traces.txt在程序中無法訪問,因爲Android N
在Android N上,「/data/anr/traces.txt」不可訪問。
File anrFile = new File("/data/anr/traces.txt");
if (anrFile.exists()) {
boolean read = anrFile.canRead(); //always FALSE
}
我的問題:
如何在Androidñ我的應用程序訪問traces.txt?
我的應用程序如何在Android N上獲取其ANR信息?