Ubuntu 配置 Android开发 adb调试
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> Ubuntu/Linux setup device/android for adb 参考官方说明 在Ubntu下开发Android开发调试JNI比Windows下用Cygwin方便,现总结下简单配置 In the AndroidManifest.xml file, add android:debuggable="true" to the <application> element. Enable USB debugging on your device Set up your system to detect your device 添加一个相应规则 create this file: /etc/udev/rules.d/51-android.rules 从官方查 USB Vendor IDs ,比如华为是 12d1 SUBSYSTEM=="usb", ATTR{idVendor}=="<USB Vendor ID>", MODE="0666", GROUP="plugdev" Now execute: chmod a+r /etc/udev/rules.d/51-android.rules restart adb adb kill-server adb devices # start and list