<legend id='aXMNp'><style id='aXMNp'><dir id='aXMNp'><q id='aXMNp'></q></dir></style></legend>
    <bdo id='aXMNp'></bdo><ul id='aXMNp'></ul>

<tfoot id='aXMNp'></tfoot>
    1. <i id='aXMNp'><tr id='aXMNp'><dt id='aXMNp'><q id='aXMNp'><span id='aXMNp'><b id='aXMNp'><form id='aXMNp'><ins id='aXMNp'></ins><ul id='aXMNp'></ul><sub id='aXMNp'></sub></form><legend id='aXMNp'></legend><bdo id='aXMNp'><pre id='aXMNp'><center id='aXMNp'></center></pre></bdo></b><th id='aXMNp'></th></span></q></dt></tr></i><div id='aXMNp'><tfoot id='aXMNp'></tfoot><dl id='aXMNp'><fieldset id='aXMNp'></fieldset></dl></div>

      1. <small id='aXMNp'></small><noframes id='aXMNp'>

        “您的设备与此版本不兼容"

        quot;your device isn#39;t compatible with this versionquot;(“您的设备与此版本不兼容)
        <legend id='CADZP'><style id='CADZP'><dir id='CADZP'><q id='CADZP'></q></dir></style></legend>

              <small id='CADZP'></small><noframes id='CADZP'>

            1. <tfoot id='CADZP'></tfoot>
                <bdo id='CADZP'></bdo><ul id='CADZP'></ul>
                  <tbody id='CADZP'></tbody>

                  <i id='CADZP'><tr id='CADZP'><dt id='CADZP'><q id='CADZP'><span id='CADZP'><b id='CADZP'><form id='CADZP'><ins id='CADZP'></ins><ul id='CADZP'></ul><sub id='CADZP'></sub></form><legend id='CADZP'></legend><bdo id='CADZP'><pre id='CADZP'><center id='CADZP'></center></pre></bdo></b><th id='CADZP'></th></span></q></dt></tr></i><div id='CADZP'><tfoot id='CADZP'></tfoot><dl id='CADZP'><fieldset id='CADZP'></fieldset></dl></div>

                  本文介绍了“您的设备与此版本不兼容"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在 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).

                  这篇关于“您的设备与此版本不兼容"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Android - Is it possible to get install referrer programmatically(Android - 是否有可能以编程方式安装引荐来源网址)
                  How to sign an APK with more than one certificate?(如何使用多个证书签署 APK?)
                  versionCode vs versionName in Android Manifest(Android Manifest 中的 versionCode 与 versionName)
                  What does this Google Play APK publish error message mean?(这个 Google Play APK 发布错误消息是什么意思?)
                  Lost my keystore for uploaded app on android market(丢失了我在 android 市场上上传的应用程序的密钥库)
                  App on Google Play always shows quot;Updatequot; instead of open(Google Play 上的应用程序总是显示“更新;而不是打开)
                    <tbody id='N9acI'></tbody>
                  <i id='N9acI'><tr id='N9acI'><dt id='N9acI'><q id='N9acI'><span id='N9acI'><b id='N9acI'><form id='N9acI'><ins id='N9acI'></ins><ul id='N9acI'></ul><sub id='N9acI'></sub></form><legend id='N9acI'></legend><bdo id='N9acI'><pre id='N9acI'><center id='N9acI'></center></pre></bdo></b><th id='N9acI'></th></span></q></dt></tr></i><div id='N9acI'><tfoot id='N9acI'></tfoot><dl id='N9acI'><fieldset id='N9acI'></fieldset></dl></div>

                    <tfoot id='N9acI'></tfoot>
                    • <small id='N9acI'></small><noframes id='N9acI'>

                        <bdo id='N9acI'></bdo><ul id='N9acI'></ul>
                          <legend id='N9acI'><style id='N9acI'><dir id='N9acI'><q id='N9acI'></q></dir></style></legend>