4

我知道这里有类似的问题,但似乎没有一个令人满意的答案。

我正在尝试发布应用程序,但无论我尝试什么,开发者控制台都报告说支持的设备为零

开发控制台截图

这是我的完整清单;

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

    <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"/>

     <supports-screens
        android:anyDensity="true"

        android:xlargeScreens="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true"
        android:resizeable="true"   />

    <compatible-screens>

    <!-- small size screens -->
     <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />

    <!--Only hdpi and xhdpi for normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />

    <!-- all large size screens -->
    <screen android:screenSize="large" android:screenDensity="ldpi" />
    <screen android:screenSize="large" android:screenDensity="mdpi" />
    <screen android:screenSize="large" android:screenDensity="hdpi" />
    <screen android:screenSize="large" android:screenDensity="xhdpi" />

    <!-- all xlarge size screens -->
    <screen android:screenSize="xlarge" android:screenDensity="ldpi" />
    <screen android:screenSize="xlarge" android:screenDensity="mdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="hdpi" />
    <screen android:screenSize="xlarge" android:screenDensity="xhdpi" />

    <!-- Special case for Nexus 7 -->
    <screen android:screenSize="large" android:screenDensity="213" />

    </compatible-screens>        

    <uses-feature android:name="android.hardware.location" android:required="false"/>
    <uses-feature android:name="android.hardware.camera" android:required="false"/>

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-feature android:name="android.hardware.CAMERA" />
    <uses-permission android:name="android.permission.CAMERA" />

    <application
        android:icon="@drawable/blahicon"
        android:label="@string/app_name"
        android:allowBackup="false">

        <activity
            android:label="@string/app_name"
            android:name="com.blah.blahpro.Main" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:label="@string/app_name"
            android:name="com.blah.satcalcpro.Find"
            >

            <intent-filter >
                <action android:name="com.blah.lookangles.FIND" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>        


    </application>


</manifest>

任何帮助表示赞赏。

4

4 回答 4

5

问题已排序,但不确定如何...我尝试删除所有兼容屏幕和支持屏幕代码,但没有太大区别。我唯一能想到的是我删除了这条线;

<uses-feature android:name="android.hardware.CAMERA" />

反正不应该在那里。现在支持 2522 设备,非常高兴。

无论如何,这是新的清单:

<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="17"/>


<uses-feature android:name="android.hardware.location" android:required="false"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> 
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CAMERA" />

<application
    android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Light"
    android:allowBackup="false">

    <activity
        android:label="@string/app_name"
        android:name="com.blah.blahpro.Main" >
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <activity
        android:label="@string/app_name"
        android:name="com.blah.blahpro.Find"
        android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
        >

        <intent-filter >
            <action android:name="com.blah.blahactivity.FIND" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>        


</application>
于 2013-03-23T17:44:50.460 回答
4

似乎uses-feature是区分大小写的。

您在清单中编写了两个功能:

<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.CAMERA" />

第一个没问题。您想使用相机,但这不是必需的。

问题是第二个需要一个android.hardware.CAMERA,这在任何 Android 设备中都不存在。他们有一个camera,而不是一个CAMERA

我希望这可以帮助你。

于 2015-07-07T20:00:38.933 回答
1

我建议在清单中注释掉 compatible-screens 和 support-screens,看看上传 apk 时会发生什么。我希望您在执行此操作时会看到允许使用许多设备。

然后,一次添加一些这些要求,每次上传 apk 并查看哪些限制导致设备数量下降。一旦确定了哪些限制导致了问题,就可以将这些限制排除在最终构建之外。

于 2013-03-23T17:36:10.940 回答
0

我知道现在回答已经晚了,我面临同样的问题。将所有用户功能设置为 false 后,Play 商店仍显示支持的设备为零。

这是解决方案,希望对某人有所帮助

<uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

<supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:resizeable="true"
        android:smallScreens="true"
        android:xlargeScreens="true" />
于 2017-07-13T11:41:18.003 回答