0

I need to access to my android 4.4.4 logcat files, and I want to know if there is a way to access to android logcat files (api > 16) without having to root the smartphone?

John K
  • 123
  • 2
  • 10

1 Answers1

0

According to this page, I do not see why you would need to root your smartphone to see the logcats.

I am using an unrooted Nexus 4 on API 19 to develop (with Android Studio), and I have no troubles viewing them.

Edit : I quite misunderstood the question. However, according to this, and that one, it seems it is impossible for an app to access any log file beyond its own without root access since the Jelly Bean release.

One app can still view its own logs thought (if this is what you are looking for), and you may want to take a look at this question on how to do it.

Community
  • 1
  • 1
Cyril C.
  • 112
  • 8
  • While the question wasn't clear about it, I expect that they want to read the log using an app on the device itself, rather than using a connected development machine. Otherwise, as you point out this is trivial and does not require unusual access. – Chris Stratton Apr 13 '15 at 16:17
  • exactly I want to read the log using an app on the device but the problem is that the device must be rooted !! – mohamed mhadhbi Apr 14 '15 at 10:40