Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unity says API level is too low

The exact error:

Minimum API Level Not Supported on Requested VR Device
Cardboard Requires a Minimum API Level of 19

Though in the Android SDK Manager, it says I have revisions 25.2.5, 25.0.5, and 25.0.3 installed.

like image 362
jack gallerdude galler Avatar asked May 02 '17 04:05

jack gallerdude galler


People also ask

What is minimum API level unity?

With that in mind, Unity 2021.2 will support a minimum API level 22 (Android 5.1, aka “Lollipop”).

What is minimum API level?

Starting November 1, 2022 if your app doesn't target API level 30 or above, new users with newer Android OS versions won't be able to discover or install your app on Google Play. You can request an extension if you need more time to update your app.

What is target API level in unity?

android - (Unity) Your app currently targets API level 30 and must target at least API level 31 - Stack Overflow. Stack Overflow for Teams – Start collaborating and sharing organizational knowledge.


1 Answers

You have to change this Minimun API Level from the Editor.

Go to Edit --> Project Settings --> Player --> Other Settings --> Identification --> Minimium API Level --> Android 4.4 'Kit Kat' (API Level 19) or anything above.

Also change Target API Level to Automatic (highest installed).

If this did not work, make sure to download API Level 19 (Android 4.4.2) or any level above from the Android SDK Manager. After that repeat what's in this answer.

like image 107
Programmer Avatar answered Oct 04 '22 23:10

Programmer