set up device for development (???????????? no permissions)

后端 未结 26 2388
再見小時候
再見小時候 2020-11-22 12:27

I am using a Samsung galaxy nexus phone (Android 4.0 platform) .

I am developing Android app on Ubuntu linux OS. I would like to run my application

26条回答
  •  暖寄归人
    2020-11-22 13:06

    If anyone faces the following error message when they use adb devices

    no permissions (verify udev rules); see [http://developer.android.com/tools/device.html]
    

    Execute the following

    sudo -s 
    adb kill-server
    adb start-server
    

    That fixed the issue for me on a custom build android device

提交回复
热议问题