App Submission Problem in the Play Store

5

I'm submitting an updated version of my app (sdk 23) to the Play Store and is giving this error when posting to the Beta Tester section:

  

The configuration can not be published for the following reasons:   possible to downgrade devices that used   M (SDK 23 and above) permissions for APKs that use the permissions of   old style (SDK 22 and lower). This happens when you change the version   32 (SDK 23) to version 29 (SDK 19).

I have already made the requestPermission changes to the sdk 23. But to contemplate the devices with android

asked by anonymous 28.09.2016 / 10:33

1 answer

0

It looks like you tried to load an APK for production that uses the M (level 23) permissions template. This means that you can not downgrade downgrade to earlier versions. This is due to the changed permissions template between these different versions.

See here in Google Developer Console :

  

Please note that rollbacks are not supported due to the requirements of   application version of the Android platform. If you need   revert, check before launching a previous APK with a new   version. However, this practice should only be used as a last resort.   as users will lose access to new   features and the old application may not be compatible with the   changes or formats, so be sure to   run alpha and beta testing before upgrading.

To fix it you need to:

  • Rebuild the project in its previous state with the version number (it must be higher than all versions shipped previously)
  • Resend
  • 17.12.2016 / 13:26