Dorian Reul
Dorian Reul

Reputation: 11

Google Play Console API level 26+

I try to upload a beta version of an app on Google Play Console. I got this error message:

enter image description here

This configuration cannot be published for the following reason(s):
It is forbidden that a device upgrading from API levels in range 14-25 to API levels in range 26+ should downgrade from version 118018 to version 118008, which would occur when
  Release track containing any of [BETA] and
  Screen layouts containing any of [small, normal, large, xlarge] and
  Features containing all of [android.hardware.FAKETOUCH, android.hardware.screen.PORTRAIT]

I'm looking for this error for a few hours, I'm out of ideas...

Edit: Here is my build.gradle:

Pastebin link

Upvotes: 1

Views: 3034

Answers (1)

alexpfx
alexpfx

Reputation: 6700

According to doc you cannot release or publish an Apk for Android O until the release.

You cannot publish your app with this configuration. The “O” version is a provisional API level that is usable only for development and testing during the Android O Developer Preview. You must wait to publish your Android O changes until the final API level is released, and then update your configuration again at that time.

More information here.

Upvotes: 1

Related Questions