Android 使用配置和支持屏幕使应用程序与所有设备不兼容?

Android 使用配置和支持屏幕使应用程序与所有设备不兼容?,android,android-manifest,google-play,Android,Android Manifest,Google Play,我已经发布了一个带有此类清单的测试应用程序 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="xxx" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minS

我已经发布了一个带有此类清单的测试应用程序

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxx"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="4" />

    <uses-configuration android:reqFiveWayNav="false"
    android:reqHardKeyboard="false"
    android:reqKeyboardType="nokeys"
    android:reqNavigation="nonav"
    android:reqTouchScreen="notouch"></uses-configuration>

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".TestManifestAttributesActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

我发布了该应用程序,它与所有设备都不兼容,包括我和我的所有朋友。我们有普通和大屏幕的应用程序,mdpi和hdpi


为什么会这样?为什么我根本不能使用这些属性?

notuch
意味着应用程序不需要触摸屏 您正在设置android:reqHardKeyboard=“false”


删除
uses configuration
标签。

Hm,我不想删除它,但我会尝试使用选项。谢谢你指点我。你运气好吗?使用哪些设置?谢谢。已停止使用配置嗯,谢谢。我没有使用配置,仍然有许多设备似乎不兼容,包括我测试应用程序这么长时间的设备。清单中一定有一些限制属性。除了和,你们的舱单上还有什么?谢谢。请看下面我的答案。