简体   繁体   English

Android / Google Play并非支持所有设备

[英]Android / Google Play Not all devices supported

I recently see that about 300 devices aren't supported by my app (and about 50 of Samsung (Galaxy S– GT-I9018 / Galaxy S– GT-I9010 / etc..)) 我最近发现我的应用程序不支持约300台设备(三星约有50台(Galaxy S– GT-I9018 / Galaxy S– GT-I9010等)。)

I read several times my manifest but nothing seems strange to me. 我读了几次清单,但对我来说似乎并不奇怪。 Does anyone have an idea or an advice ? 有人有想法或建议吗?

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.gamequiz.activity"
    android:versionCode="6"
    android:versionName="1.0.6" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="15" />

<supports-screens android:resizeable="true"
                  android:smallScreens="true"
                  android:normalScreens="true"
                  android:largeScreens="true"
                  android:anyDensity="true" />

   //other stuff

</manifest>

You've set your minimum SDK to 10, which is Gingerbread, so all devices running anything below the first revision of Gingerbread will be incompatible with your device. 您已将最低SDK设置为10,即Gingerbread,因此所有运行低于Gingerbread的第一版的设备都将与您的设备不兼容。

If your app doesn't rely on Gingerbread and above APIs, you could try lowering android:minSdkVersion to a lower API level 如果您的应用程序不依赖Gingerbread及以上API,则可以尝试将android:minSdkVersion降低到较低的API级别

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

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM