0

我开发了一个仅在 Nexus 7 上运行的应用程序(目前),并且似乎无法弄清楚需要哪些参数组合才能仅获取 Nexus 7 的注释,但 Google Play 支持的任何设备。

我只用 USB 连接的物理 Nexus 7 进行了测试,它在纵向和横向模式下都可以正常工作。

我只包含了 Android Manifest XML 的最后一次尝试。

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

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

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


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

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

    <application
        android:allowBackup="true"
        android:hardwareAccelerated="true"
        android:icon="@drawable/ow_icon"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.xxx.xxx.MainActivity"
            android:configChanges="orientation|screenSize"
            android:clearTaskOnLaunch="true"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

任何帮助将不胜感激。

4

2 回答 2

2

那么你的 minsdkversion 是 17,对应于 android 4.2+。目前仅在一小部分设备上运行!

于 2013-08-12T09:06:48.673 回答
0

After removing the following code from the Manifest

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

I then had thousands of devices supported. Since I only wanted the Nexus 7 (my original issue), I changed the "supports-screens" section and added the "uses-feature" line to the Manifest.

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

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

The above changes allowed my app to run on 7" and 10" devices.

于 2014-03-30T20:21:24.520 回答