0

Nexus 7 (今のところ) でのみ実行されるアプリを開発しましたが、Nexus 7 のみを取得するために必要なパラメーターの組み合わせを把握できないようですが、Google Play でサポートされているすべてのデバイスをサポートしているようです。

USB 接続の物理的な Nexus 7 でのみテストしましたが、ポートレート モードとランドスケープ モードの両方で問題なく動作します。

Android マニフェスト 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

マニフェストから次のコードを削除した後

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

その後、何千ものデバイスをサポートしました。Nexus 7 (私の最初の問題) だけが欲しかったので、「supports-screens」セクションを変更し、「uses-feature」行をマニフェストに追加しました。

<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" />

上記の変更により、アプリを 7 インチおよび 10 インチのデバイスで実行できるようになりました。

于 2014-03-30T20:21:24.520 に答える