0

I have 2 android devices. One is samsung tablet and the other one is general mobile discovery phone. Android studio recognizes samsung tablet when i choose debug mode and I successfully run my simple applications on the tablet. However the studio doesnt recognize my phone. Im using Win7 and my pc recognizes the phone to copy files from/to. Can you suggest any solution?

Engin Deniz
  • 1
  • 1
  • 3

4 Answers4

1

Sure that you have installed in your TOOLS:

enter image description here

PurpleSoft
  • 146
  • 11
0

This is similar to an answer I submitted before.

Android error No, minSdk(API 19) > deviceSdk(API 1)

There are a few things to check.

if you go to the terminal window in Android Studio and cd to the path where your sdk platform tools are installed (something like C:\Android\SDK\platform-tools ) and run the following command

adb devices

Do you have a device listed? If not then you don't have the device setup properly, or the correct drivers.

On the phone make sure that you have developer options enabled (go to settings->about phone and click on the Build Number 7 times or so)

Once you have enabled that go into the develop options under settings and make sure USB debugging is enabled.

Community
  • 1
  • 1
Brian S
  • 3,096
  • 37
  • 55
  • I wrote adb devices and the result is : "list of devices attached" (but no device shown.) Also did clicked 7 times and it said now you are a developer.But still no device. Enabled/disabled debugging several times. – Engin Deniz Feb 02 '16 at 16:03
  • have you setup the device as a developer device by tapping the build number? Do you have USB debugging enabled? – Brian S Feb 02 '16 at 16:04
  • You are on windows If you go to Administrative Tools->Computer Management and select Device Manager, do you have any warning icons, or do you see anything as an ADB Interface? – Brian S Feb 02 '16 at 16:06
  • Yes,tapped 7 times(now you are a developer) and usb debugging enabled. I checked device manager but no warning. The phone is shown on the list under portable devices but with no special name,just as "H:\" – Engin Deniz Feb 02 '16 at 16:21
  • Is there an icon at the top that allows you to change the USB debugging mode? Some phones allow to change between media device or camera etc. Sometimes that helps. – Brian S Feb 02 '16 at 16:44
  • Yes I tried that trick many times (switching usb storage option on-off,debugging mode on-off several times) but it didnt work for me. – Engin Deniz Feb 02 '16 at 16:57
  • Also look at what PurpleSoft noted above and make sure that the Google USB driver was installed. – Brian S Feb 02 '16 at 17:47
0

If you are using Mac or Windows then try PdaNet, this tool works with most devices and really useful if you are using devices by regional or country based manufacturers.

bpr10
  • 1,086
  • 8
  • 14
0

Maybe your PC not install the driver for the mobile device. Try download UniversalAdbDriverSetup6.msi from http://hexamob.com/news/download-android-usb-drivers-for-onda/

nani
  • 389
  • 9
  • 32