Summary of steps:
- Enable USB debugging
- Select USB connection mode to "UMS mode only"
Plug in the USB cable from the computer to the phone. The phone will pop up the "Setting USB" dialog and ask you to select "KIES" or "UMS mode only". You want to select the first option: UMS mode only. (Kies is Samsung's software for updating the phone's software etc).
Now the I5500 shows up on my devices list in Android Studio. My Android application was configured for
minSdkVersion 10
so notice the "no" in the Compatible column when I tried to run the application:I modified the build.gradle file to
minSdkVersion 8
and also set android:minSdkVersion="8"
in the AndroidManifest.xml file. Now the app deploys OK.Of course ADB.exe also lists the I5500 correctly now:
D:\Android\android-studio\sdk\platform-tools> adb devices
List of devices attached
I550030d7c481 device
No comments:
Post a Comment