The problem of publishing the application as a beta, which I can download and save as a draft. Play store will show me this error after the release of Save as draft.
It is forbidden to transfer devices that previously used M-permissions (target SDK 23 and above) for APKs that use old-style permissions (target SDK 22 and below). This happens when you change from version 28 (target SDK 23) to version 25 (target SDK 21).
But I didn't change my gradle at all. I am just updating my android studio with the latest. help solve this problem.
compileSdkVersion 23
buildToolsVersion '23.0.3'
defaultConfig {
minSdkVersion 15
targetSdkVersion 23
versionCode 29
versionName '1.12.5'
multiDexEnabled = true
}
source
share