/dev/log/main not found

前端 未结 3 1231
别那么骄傲
别那么骄傲 2020-12-17 19:35

I\'m trying to develop an Android application but when I try to connect to logcat I get the following error:

Unable to open log device \'/dev/log/main

3条回答
  •  渐次进展
    2020-12-17 20:08

    I found the following method on XDA:

    adb shell
    su
    mount -o remount,rw /system
    echo ANDROIDLOGGER >> /system/etc/tweaks.conf
    mount -o remount,ro /system
    

    and reboot.

提交回复
热议问题