I have sucessfully build the last oreo relase for my device but it reboot just after passed the boot process so I need to view the logcat for find the cause of the problem but I cant allow adb. Is possible to view the logcat through adb without allow it.
Asked
Active
Viewed 1,081 times
-6
-
For an early crash you may want to get serial console output rather than ADB. – Chris Stratton Jan 20 '18 at 23:25
1 Answers
2
- No, need to allow it in order to ENABLE it. If it's not ENABLED, it will not respond to any request.
Other option is to have ADB enabled in your FW by default. For this, you could give these a try. Set them to this values in an MK file.
ro.secure=0 ro.adb.secure=0 ro.debuggable=1
Compile a userdebug kind of build, flash that (it has ADB enabled by default) and logcat the output.

Olaia
- 2,172
- 25
- 27
-
I know that I can use ro.adb.secure=0 and ro.secure=0 for obtain a Similar effect, is right? – rez_23 Jan 09 '18 at 16:07
-