我有一個我開發的應用程序,我正在多個設備上測試它。我的應用程序不會安裝在HVGA設備上
該應用程序不會安裝在三星Galaxy Q上(運行帶有HVGA 320x480屏幕的Froyo)。
minSdkVersion是7,所以不應該是問題。它安裝並運行良好的其他。更大的屏幕設備。
我已將AndroidManifest.xml <supports-screens>
標誌設置爲對所有屏幕尺寸均爲真。
當我嘗試安裝.apk時,看到的錯誤是「應用程序未安裝」。
它安裝在具有相同屏幕分辨率和操作系統版本的模擬器上。
這裏是清單,請注意,因爲該項目是在NDA下,我用「%%%%」替換了可識別的元素。
AndroidManifest.xml
<manifest android:versionCode="1"
android:versionName="1.0"
package="%%%%"
xmlns:android="http://schemas.android.com/apk/res/android">
<application android:debuggable="false"
android:hardwareAccelerated="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:name="%%%%"
android:theme="@style/Theme.LoadingBackground">
<activity android:label="@string/app_name"
android:name="%%%%" />
<activity android:icon="@drawable/icon"
android:label="@string/app_name"
android:launchMode="singleTask"
android:name="%%%%"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:label="Store Front Widget"
android:name="%%%%"
android:screenOrientation="portrait"
android:taskAffinity="%%%%">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<receiver android:label="%%%%"
android:name="%%%%">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_provider" />
</receiver>
<receiver android:name="%%%%" />
<service android:name="c%%%%" />
<service android:name="%%%%">
<intent-filter>
<action android:name="%%%%" />
</intent-filter>
</service>
<service android:name="%%%%">
<intent-filter>
<action android:name="%%%%" />
</intent-filter>
</service>
<uses-library android:name="com.google.android.maps" />
</application>
<supports-screens android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-sdk android:minSdkVersion="7"
android:targetSdkVersion="7" />
</manifest>
在哪裏指定? – howettl 2012-01-10 23:01:23
另外,這是安裝時的問題嗎? – howettl 2012-01-10 23:15:59
是的,我的項目中有同樣的問題。 – lv0gun9 2012-01-10 23:17:52