简体   繁体   English

对于 Google Play,我可以让我的游戏要求少于 Android 12 来下载吗?

[英]For Google Play, can I have my game require less than Android 12 to download?

I have built a game for Android that I am pretty exited about and proud of.我为 Android 制作了一款游戏,我对此感到非常兴奋和自豪。 I have released it to the app store but in order to download the game it needs to have Android 12 or above.我已将它发布到应用商店,但要下载游戏,它需要 Android 12 或更高版本。 I know very few people who currently have that new of an Android phone which heavily limits my audience.我知道目前很少有人拥有 Android 手机,这严重限制了我的听众。 Is there a way that I can change the game to where it requires less than Android 12?有没有办法可以将游戏更改为需要少于 Android 12 的地方? Also the game is built in Unity if that changes anything.如果有任何改变,游戏也是在 Unity 中构建的。

Thank you, Tyrone McClanahan谢谢你,泰隆·麦克拉纳汉

Link to game: https://play.google.com/store/apps/details?id=com.TyMcClanahan.BoomerangBilly游戏链接: https://play.google.com/store/apps/details?id=com.TyMcClanahan.BoomerangBilly

You need to update the minSdkVersion field on the AndroidManifest.xml您需要更新 AndroidManifest.xml 上的minSdkVersion字段

See https://developer.android.com/training/basics/supporting-devices/platforms请参阅https://developer.android.com/training/basics/supporting-devices/platforms

You can choose the value of minSdkVersion that matches the Android API Level that your app is compatible with.您可以选择与您的应用兼容的 Android API Level 匹配的minSdkVersion值。

Make sure not to confuse minSdkVersion and targetSdkVersion .确保不要混淆minSdkVersiontargetSdkVersion The latter only configures the behaviour of the app and not the eligibility of devices for your app.后者仅配置应用程序的行为,而不配置设备是否适合您的应用程序。 See What is the difference between min SDK version/target SDK version vs. compile SDK version?请参阅最小 SDK 版本/目标 SDK 版本与编译 SDK 版本之间的区别是什么? for more details.更多细节。

You can set the Minimum API Level directly in the Unity Player Settings.您可以直接在 Unity Player Settings 中设置Minimum API Level https://docs.unity3d.com/Manual/class-PlayerSettingsAndroid.html https://docs.unity3d.com/Manual/class-PlayerSettingsAndroid.html

With Unity 2021 you can decrease it down to Android 5.1 , see https://docs.unity3d.com/Manual/system-requirements.html使用 Unity 2021,您可以将其降低到Android 5.1 ,请参阅https://docs.unity3d.com/Manual/system-requirements.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 我想为我的 android 益智游戏进行应用内购买,它将从 Google Play 下载带有其他谜题的文件 - I want to have in-app purchases for my android puzzle game that will download files with additional puzzles from Google Play 是否可以使用Google Play游戏服务在iO和Android上使用共同的排行榜? - Whether I can have common leader board for both iOs and Android using Google Play Game Service? 我在Google Play中有一个查询维护发布Android游戏吗? - I have a query reguarding publishing android game in google play? 如何实现Google Play成就并登录我的游戏? - How can I implement google play achievements and sign in on my game? 我在 google play 上发布的应用程序在用户下载时会显示一个 android 文件。 我怎样才能解决这个问题? - My published app on google play shows an android file when users download it. How can i fix this? 我如何像在Google Play上下载或安装apk文件一样在应用程序中下载视频? - How I can download video in my application like we download or install apk file on google play? 我可以下载我在Google Play上注册的捆绑包ID的列表吗? - Can I download a list of the bundle IDs I have registered on Google Play? 如何在Android Studio中的应用中实施Google Play游戏服务? - How do I implement Google Play Game services in my app in Android Studio? 我可以通过编程方式为Google Play上的Android应用设置价格吗? - Can i set price programmatically of my android app on Google play? Google Play Console:我的应用程序的活跃用户数低于安装数。 怎么会这样? - Google Play Console: my app have numer of active user lower than install. How can it be?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM