At this moment a version of my app is on production with minSdkVersion 16. Currently I'm trying to deploy in beta channel new version with minSdk 19 but I'm getting this error:
{
"code" : 403,
"errors" : [ {
"domain" : "androidpublisher",
"message" : "Devices with version 49 of this app target SDK 27 and would be upgraded to version 26 which targets SDK 20. This is forbidden as you cannot upgrade away from M permissions."
,
"reason" : "multiApkDowngradedTargetSdk"
} ],
"message" : "Devices with version 49 of this app target SDK 27 and would be upgraded to version 26 which targets SDK 20. This is forbidden as you cannot upgrade away from M permissions."
}
If I leave it like before, with minSDK16 works but not when I change it to even API 17/18/19 won't work.
I'm using this plugin for deploy on release apk: gradle-play-publisher
Do you have and idea for a workaround? Definitely I need to increase the min support version to 19.
Thanks