1

When I raise my app on Google play This shows me the problem

Your app currently targets API level 25 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 26

  • Note I use Unity

You have updated sdk the latest version

Please help how I change API level to at least 26 in Unity

Thanks

AskNilesh
  • 67,701
  • 16
  • 123
  • 163
nono neno
  • 11
  • 1
  • 3
  • Maybe [this](http://answers.unity.com/answers/1571926/view.html) can help? You can find the document about setting up Android environment [here](https://docs.unity3d.com/Manual/android-sdksetup.html) – Tura Dec 14 '18 at 09:14
  • 1
    Possible duplicate of [how to Change my app's target API level from 23 to 26](https://stackoverflow.com/questions/50404548/how-to-change-my-apps-target-api-level-from-23-to-26) – karan Dec 14 '18 at 09:36
  • Meet Google Play's target API level requirement. Check [this](https://developer.android.com/distribute/best-practices/develop/target-sdk) – Molly Dec 14 '18 at 09:41

3 Answers3

2

Just open your build.gradle(Module: app) and change your compileSdkVersion and targetSdkVersion 26 or more than 26. enter image description here

Gundu Bandgar
  • 2,593
  • 1
  • 17
  • 21
0

Target API level is a setting in PlayerSetting. Just change it there

enter image description here

zambari
  • 4,797
  • 1
  • 12
  • 22
0
  • go to build.gradle file in your project
  • look for defaultTargetSdkVersion & defaultCompileSdkVersion
  • then change value to 26 enter image description here
Binary_Hits00
  • 570
  • 6
  • 7