RCA tablet: Android app debugging - no compatible targets found

I have an RCA 7 "tablet and I'm trying to debug its Android application. Since it does not provide drivers, I downloaded it using PDAnet. I also turned on USB debugging, but when I try to run the application it says that no compatible ones were found devices.

Does anyone know how to fix this.

+3
source share
1 answer

There was the same problem.

More detailed instructions and Windows are here: http://ryancuda.blogspot.com/2013/12/how-to-get-working-adb-drivers-for.html

For my Mac, I was able to connect after execution:

  • android update adb
  • Find the adb_usb.ini file ( locate adb_usb.ini, mine was in ~/.android/adb_usb.ini)
  • system_profiler SPUSBDataType. . "0x2207" RCA 7 ", " Fuzhou Rockchip Electronics Co., Ltd. ".
  • adb_usb.ini echo "0x2207" >> ~/.android/adb_usb.ini
  • adb kill-server
  • adb devices
+1

All Articles