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?
-
is debugging enables in the phone? if yes then reinstall the drives of your phone, it will most probably solve the problem – Atiq Feb 02 '16 at 15:53
-
Try this: http://stackoverflow.com/a/16707217/4565322 – skymedium Feb 02 '16 at 15:53
-
1what about adb? does it show up on `adb devices`? – rupps Feb 02 '16 at 15:53
-
@bigdestroyer : It was easy to find for samsung tablet,but I couldnt find for this phone. – Engin Deniz Feb 02 '16 at 16:14
-
@rupps : No, not any device on adb. – Engin Deniz Feb 02 '16 at 16:14
4 Answers

- 146
- 11
-
-
-
check the version of Android you have installed on your phone and see if you have this version installed on your pc . For example if you have version 5, the API should have installed 21 – PurpleSoft Feb 02 '16 at 16:41
-
I have 4.2.1 on phone.On pc : android sdk tools 24.4.1,android sdk paltform tools 23.1 – Engin Deniz Feb 02 '16 at 16:44
-
I just remembered that it works for me: [link](http://visualgdb.com/KB/usbdebug-manual/) – PurpleSoft Feb 02 '16 at 16:45
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.
-
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
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/

- 389
- 9
- 32