我有一个相对简单的应用程序,这是已经在谷歌的游戏商店。
现在我做了这个应用程序的更新。 此更新的一个观点是,我包括zbar和-扫描仪。 的变化,其余均很小,应该不会对我的问题没有任何影响。
我只是把我的应用程序的最新verison在游戏商店,我得到以下警告:“警告:有效APK支持更少的设备比以前活跃的APK有些用户不会收到更新。”
我从sourceforge.net下载ZBarAndroidSDK-0.2.zip(http://sourceforge.net/projects/zbar/files/AndroidSDK/),并且在其自述,解释文件将其导入到我的项目。
我测试了我的本地应用程序在我的HTC野火S( - > 2.3.5版),对三星Galaxy 3(GT-I5800 - > 2.2版),并在我的Galaxy Nexus( - > 4.2版)。 从来没有一个问题。 一切工作。 我还测试了出口的APK,并没有任何问题。
现在我这个APK添加到播放,存储和更新我的应用程序,我得到了测试设备的警告。 无论是我的HTC野火,也没有我的三星Galaxy 3可以更新的新版本。
任何人可以帮助我,给我解释一下什么问题呢?
非常感谢!!!
编辑:
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="de.myproject"
android:versionCode="5"
android:versionName="2.0"
android:installLocation="preferExternal"
>
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="11"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<application
android:uiOptions="splitActionBarWhenNarrow"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<!-- enable the search dialog to send searches to SearchableActivity throughout the application -->
<meta-data
android:name="android.app.default_searchable"
android:value=".SearchableActivity" />
<activity
android:label="@string/app_name"
android:name=".MainActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.NoBackground">
<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:screenOrientation="landscape"
android:name=".zbar.ZBarScannerActivity">
</activity>
</application>
和zbar和的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.sourceforge.zbar.android.CameraTest"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application android:label="@string/app_name" >
<activity android:name="CameraTestActivity"
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>