私は以下のマニフェストを持つアプリケーションを開発しました。Android Manifest Xlarge Screen Issue
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.Test"
android:versionCode="1111"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="7" android:maxSdkVersion="10"/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:resizeable="true"
android:anyDensity="true">
</supports-screens>
<application android:icon="@drawable/app_icon"
android:label="@string/KEY_app_name"
android:theme="@android:style/Theme.NoTitleBar">
<activity android:name=".SplashScreenActivity"
android:label="@string/KEY_app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
& default.propertiesはtarget=android-8
懸念に設定私は、デフォルトでは、Androidマーケットでアプリケーションを展開するとき、それは本当のようにX-大画面への支援を表示することが何でありますか起こるべきではない。 x-largeスクリーンサポートをfalseに設定しようとしましたが、ここではサポートされていません。あなたは2.1などのような下位バージョンに設定されたデバイスのサポートを失うことなく、x-largeスクリーンへのサポートをfalseとしてどのように設定することができるのか教えてください。
この点に関する助けがあれば幸いです。
ありがとう&お早めにお待ちしております。