Not all data shown when Android logcat is read programatically

前端 未结 2 1524
旧巷少年郎
旧巷少年郎 2020-12-03 15:41

I have such a problem, I try to get data from logcat programatically. permission has also been added to manifest file:



        
相关标签:
2条回答
  • 2020-12-03 16:10

    I have bad news for you: as of JB, READ_LOGS don't just work as it did anymore:

    https://groups.google.com/forum/?fromgroups#!topic/android-developers/6U4A5irWang

    (scroll to the post of Dianne Hackborn, an Android Develper) and this video:

    Google I/O 2012 - Ten Things Game Developers Should Know

    (22:47) for official sources.

    However his has not been yet documented (the READ_LOGS permission doesn't report this) and is yet a source of confusion. You can only access your own logs now, and the good news is, you don't need to request permissions for it anymore (if your are targetting Jelly Beans, that's it...).

    I guess it's a compromise the Android Dev team took to prevent malicious app from spying on the user, perhaps getting sensitive information (I wouldn't bet every app developer cleans it's own Log.d statements before release).

    Hope this helps

    0 讨论(0)
  • 2020-12-03 16:14

    From Android Jelly Bean, applications cannot read log entries from other applications, unless your device is rooted and you read the logs as superuser.

    So basically... This is the expected behavior.

    I could not find any official statement in the Android documentation (someone can edit this answer if they do), but you might be interested in having a look at this answer: https://android.stackexchange.com/questions/28857/how-can-i-access-android-log-files-on-my-nexus-7-without-root-access

    0 讨论(0)
提交回复
热议问题