How to solve problem Version 1 is not served to any device configuration when uploading Android app to Google Play store
I has this problem when I uploaded the APK at the first time but I noticed that API level 18–17 when viewing APK details. Therefore, I added this code to AndroidManifest.xml to specify the maximum API level
<uses-sdk android:minSdkVersion="18"
android:targetSdkVersion="23"
android:maxSdkVersion="23" />
After doing this, the problem is solved :)