Debug android through adb without allow it

  • 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.

Leave a Comment