Skip to main content
vickyg64711747
Inspiring
August 6, 2018
Answered

Your app have to target android api level 26

  • August 6, 2018
  • 2 replies
  • 1901 views

Hi there,

I have published my Adobe Air App using Adobe Animate CC with Air SDK 30.0.0.107.

When I uploaded it to Google Play it returned me this answer: "Your app have to target android api level 26". It said that my app is now targeting API 19.

Does anybody know how I can change the API targeted.

Thank you!

    This topic has been closed for replies.
    Correct answer vickyg64711747

    I was using the Milkman plugin to run my ads in my app, so I had to manually manage the permissions in the application descriptor xml file. As my version of Milkman was old, I was targeting API 19.

    <uses-sdk android: minSdkVersion = "9" android: targetSdkVersion = "19" />

    I changed this value by 26

    <uses-sdk android: minSdkVersion = "9" android: targetSdkVersion = "26" />

    and that's it, it worked.

    I hope someone finds this solution useful.

    2 replies

    Participant
    August 7, 2018

    I'd appreciate it if you could let me know how you did it.

    Participant
    August 7, 2018

    Alquien puede colocar la solucion...

    vickyg64711747
    vickyg64711747AuthorCorrect answer
    Inspiring
    August 7, 2018

    I was using the Milkman plugin to run my ads in my app, so I had to manually manage the permissions in the application descriptor xml file. As my version of Milkman was old, I was targeting API 19.

    <uses-sdk android: minSdkVersion = "9" android: targetSdkVersion = "19" />

    I changed this value by 26

    <uses-sdk android: minSdkVersion = "9" android: targetSdkVersion = "26" />

    and that's it, it worked.

    I hope someone finds this solution useful.

    vickyg64711747
    Inspiring
    August 6, 2018

    It is already solved, thank you anyway!

    Community Expert
    August 7, 2018

    I am glad you were able to figure it out. Could you share how you fixed it, in case someone in the future may have a similar issue?