2019.2.6t1 - How to Add Additional Android APIs?

It seems that 2019.2.6f1 only has Android 28, though one may still select a different version in Player Settings/other Settings. It’s been my experience that only 28 will actually build. In the AndroidPlayer directory under the 2019.2.6f1 install I’ve found no SDK manager. Are we only able to use Android 28 in Unity 2019.2.6f1?

no, you should be able to use later API levels if they are available.

You are probably talking about the UI tool which was removed by Google a while ago. To update the SDK you can either point AndroidStudio’s SDK location to where you have SDK used by Unity and then use AndroidStudio’s UI to update / install required API levels. Or you can use sdkmanager command tool which is <SDK_ROOT>/tools/bin/sdkmanager. Running

should install API 29 for you.

1 Like

Thanks!