Reputation: 597
I am new to Android programming. I have created an app and I am deploying it on my Android device with version 4.0.3. I have connected the device properly. Even though I get this warning, I have deployed successfully on previous occasions. I am really not able to understand why my device version is not getting detected now.
Has my device cable gotten loose? How can I fix this?
Upvotes: 2
Views: 5085
Reputation: 1104
first reset adb from device in eclipse and also check below things (in ddms go device (look like small mob logo and reset adb)
hope at least one of the following will help:
You have to uninstall the application from the application manager on your cellphone before you can install it again. Also check the version compatibilty issue Apparently, your device is not properl connected
nd also make
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
in androidmainfest.xml
Upvotes: 5