Google 播放 11157 不支持的设备

Google Play 11157 unsupported devices

我在 Unity3D 中制作了游戏,然后将其上传到 Google Play 商店。开发人员控制台显示有 11157 台设备不受支持(仅支持 1020 台)。我想我无法通过我的 phone 找到我的应用程序,因为它在不受支持的列表中。

我怎样才能让它被更多的设备支持?


  <?xml version="1.0" encoding="utf-8" ?> 
- <!-- This Google Mobile Ads plugin library manifest will get merged with your
application's manifest, adding the necessary activity and permissions
required for displaying ads.

  --> 
- <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.unity" android:versionName="1.0" android:versionCode="1">
  <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" /> 
- <!--  Google Mobile Ads Permissions 
  --> 
  <uses-permission android:name="android.permission.INTERNET" /> 
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 
- <!--  Uncomment to add billing for in-app purchase ads 
  --> 
- <!-- <uses-permission android:name="com.android.vending.BILLING"/> 
  --> 
- <application>
- <!--  Denote the referenced Google Play services version 
  --> 
  <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> 
- <!--  Google Mobile Ads Activity 
  --> 
  <activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:theme="@android:style/Theme.Translucent" /> 
- <!--  InAppPurchase Activity 
  --> 
  <activity android:name="com.google.android.gms.ads.purchase.InAppPurchaseActivity" android:theme="@style/Theme.IAPTheme" /> 
  </application>
  </manifest>

将最低 API 级别设置得更低。 API 19 4.4 Kitkat 将覆盖大约 74%。 API 16 4.1 Jelly Bean 将覆盖 95% 左右。基于 Platform statistics

检查您的 Android 清单是否不需要很多功能。您可以将 android:required="false" 添加到它们。

不要将纹理压缩设置为 Tegra。