quot;your device isn#39;t compatible with this versionquot;(“您的设备与此版本不兼容)
问题描述
我在 Play 商店中放置了一个应用,而我的朋友在两台设备上运行 4.0.3,在尝试安装我的应用时收到以下消息:您的设备与此版本不兼容".
I put an app in the play store and my friend, who is running 4.0.3 on two devices, got the following message when trying to install my app : "your device isn't compatible with this version".
一个设备允许它安装,而另一个不允许.我允许 API 3-15 并且两个设备都是 4.0.3.有什么问题?
One device allows it to install and the other doesn't. I allow for API 3-15 and both devices are 4.0.3. What's the problem?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.snotyak.basicfuelcalcpro"
android:versionCode="2"
android:versionName="1.2.3" >
<uses-sdk
android:minSdkVersion="4" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application
android:name=".CalcApp"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/MainTheme" >
<activity android:name=".CalcActivity" >
</activity>
<activity
android:name=".PrefsActivity"
android:label="@string/prefs_name" />
<activity
android:name=".CalcTabView"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".AboutActivity"></activity>
<activity android:name=".HistoryActivity" />
<activity android:name=".AnalysisActivity" />
</application>
</manifest>
推荐答案
仔细检查 AndroidManifest.xml
文件中的
标签.听起来您的应用程序需要其中一个设备不支持的功能.
Double check the <uses-feature>
tag in your AndroidManifest.xml
file. It sounds like your application requires a feature that one of the devices doesn't support.
您还应该检查您的 AndroidManifest.xml
中是否声明了以下内容,
You should also check to see if you have the following declared in your AndroidManifest.xml
,
<uses-sdk
android:minSdkVersion="3" />
您希望您的应用程序适用于运行 API 3 及更高版本(而不是 API 3 到 15)的设备.上面的代码将确保您的应用程序适用于 API 3 以上的所有设备.请注意,您通常不希望使用 android:maxSdkVersion
属性(如果您当前正在使用它).
You want your application to work for devices running API 3 and above (not APIs 3 through 15). The code above will ensure that your application works with all devices above API 3. Note that you generally don't want to use the android:maxSdkVersion
attribute (if you are currently using it).
这篇关于“您的设备与此版本不兼容"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“您的设备与此版本不兼容"
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01