Home > Mobile >  Should I install all STKs to Upload Unity Game to Google Play?
Should I install all STKs to Upload Unity Game to Google Play?

Time:02-27

My question is Should I install all STK versions or only latest version (...API24,API25,API26,API27,API28,API29,API30,API31,API32...) is enough for uploading my unity game to google play? I have just installed the latest API version(Currently API32). But in Google Play there could be players which has lower version of API like API24. My quesion is also for JDKs and NKDs If it these have the same solutions. Does it important(For Google Play) to have latest version of STK JDK NDK? Edit:I adjust as use maximum API level in unity

Note:I imagine like if I made mistake about this ,some of players can not play my game. If It is real, I don't want to lose some players. I imagine like this so please help:)

CodePudding user response:

I recommend you to set the target SDK to API30, so that most of players can run your game perfectly.

These articles might help:

Meet Google Play's target API level requirement: https://developer.android.com/google/play/requirements/target-sdk

Stackoverflow user question:
Will my application be visible to devices higher than my targetSdkVersion in Google Play Store?

  • Related