
I can not understand the error. I realized that in my 14th version of targetSdkVersion there were 23, and now I can not download apk. Now I have targetSdkVersion = 22, and even for my previous version targetSdkVersion was 22.
I want to run the application as soon as possible. But stuck in this problem.
Gradle
defaultConfig {
applicationId "***"
versionCode 30
versionName "3.0"
multiDexEnabled true
compileSdkVersion 23
buildToolsVersion "23.1.1"
minSdkVersion 14
targetSdkVersion 22
}
source
share