Monday, October 19, 2015

[Android][Resolved] The selected device is incompatible in Android Studio

Reason why caused this problem is the android api version of your device is too old. Does not fit the minSdkVersion set at build.gradle.

My minSdkVersion value in build.gradle set as 22 but the testing device is Android 4.1.2 with API 16. If you still want use the old device to test the project, you can change the value of minSdkVersion value in build.gradle to your device api version number:



 edit build.gradle and then save , and try to run project again :



Reference: http://bbs.csdn.net/topics/391840390

No comments :

Post a Comment