Search Unity

2019.2.6t1 - How to Add Additional Android APIs?

Discussion in 'Android' started by EricJ13, Sep 26, 2019.

  1. EricJ13

    EricJ13

    Joined:
    Feb 28, 2009
    Posts:
    355
    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?
     
  2. JuliusM

    JuliusM

    Unity Technologies

    Joined:
    Apr 17, 2013
    Posts:
    836
    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.
     
    EricJ13 likes this.
  3. EricJ13

    EricJ13

    Joined:
    Feb 28, 2009
    Posts:
    355
    Thanks!