<bdo id='ouxUf'></bdo><ul id='ouxUf'></ul>
  1. <legend id='ouxUf'><style id='ouxUf'><dir id='ouxUf'><q id='ouxUf'></q></dir></style></legend>

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

  3. <tfoot id='ouxUf'></tfoot>

      Play 商店有新版本的应用程序,但没有显示更新

      Play Store having new version of the app, but not showing update(Play 商店有新版本的应用程序,但没有显示更新)
      • <small id='5stxA'></small><noframes id='5stxA'>

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

              • <bdo id='5stxA'></bdo><ul id='5stxA'></ul>
                  <tbody id='5stxA'></tbody>

                本文介绍了Play 商店有新版本的应用程序,但没有显示更新的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我的应用程序安装在我的单元格中,版本为 1.0.5(版本代码 9)

                I have my app installed in my cell with version 1.0.5 ( Version code 9)

                在 Google Play 商店中,我可以看到我的应用程序版本为 1.0.7(版本代码 11),但它没有显示按钮更新(它显示的是打开"按钮)

                In Google Play Store, I can see my app with version 1.0.7 ( Version code 11 ), but it doesn't show me the button update ( it is showing me the button "Open")

                这是我必须包含在我的应用程序中的东西吗???

                Is it something I have to include in my app???

                这是 Play 商店的错误吗???

                Is it a bug in Play Store???

                是不是配置问题???

                我加入了我的 AndroidManifest.xml

                I join my AndroidManifest.xml

                <uses-sdk
                    android:minSdkVersion="16"
                    android:targetSdkVersion="20" />
                
                <uses-permission android:name="android.permission.INTERNET" />
                <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
                <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
                <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
                <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
                <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
                <uses-permission android:name="com.spg.googlemaps.permission.MAPS_RECEIVE" />
                <uses-permission android:name="android.permission.CAMERA" />
                <uses-permission android:name="android.permission.WRITE_SETTINGS" />
                
                <!--
                <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
                <uses-permission android:name="android.permission.WAKE_LOCK" />
                <uses-permission android:name="android.permission.BATTERY_STATS" />
                -->
                <uses-feature
                    android:name="android.hardware.camera"
                    android:required="true" />
                <uses-feature
                    android:name="android.hardware.camera.front"
                    android:required="false" />
                
                <permission
                    android:name="com.spg.googlemaps.permission.MAPS_RECEIVE"
                    android:protectionLevel="signature" />
                
                <uses-feature
                    android:glEsVersion="0x00020000"
                    android:required="true" />
                
                <application
                    android:name="com.myapp.MyApplication"
                    android:allowBackup="true"
                    android:icon="@drawable/ic_launcher"
                    android:label="@string/app_name"
                    android:logo="@drawable/ic_logo"
                    android:theme="@style/Theme.AppCompat" >
                    <uses-library android:name="com.google.android.maps" />
                
                    <meta-data
                        android:name="com.google.android.gms.version"
                        android:value="@integer/google_play_services_version" />
                
                    <activity
                        android:name="com.myapp.SplashScreen"
                        android:label="@string/app_name"
                        android:noHistory="true"
                        android:screenOrientation="portrait"
                        android:theme="@android:style/Theme.Black.NoTitleBar" >
                        <intent-filter>
                            <action android:name="android.intent.action.MAIN" />
                
                            <category android:name="android.intent.category.LAUNCHER" />
                        </intent-filter>
                    </activity>
                    <activity
                        android:name="com.myapp.LoginActivity"
                        android:label="@string/title_activity_login"
                        android:noHistory="true"
                        android:screenOrientation="portrait"
                        android:windowSoftInputMode="adjustResize|stateVisible" >
                    </activity>
                    <activity
                        android:name="com.myapp.DashBoard"
                        android:label="@string/app_name"
                        android:screenOrientation="portrait" >
                    </activity>
                    <activity
                        android:name="com.myapp.FragmentTabsPdv"
                        android:label="@string/app_name"
                        android:screenOrientation="portrait" >
                        <meta-data
                            android:name="android.support.PARENT_ACTIVITY"
                            android:value="com.myapp.DashBoard" />
                    </activity>
                
                    <meta-data
                        android:name="com.google.android.maps.v2.API_KEY"
                        android:value="@string/maps_key" />
                
                    <activity
                        android:name="com.myapp.RutaActivity"
                        android:label="@string/title_activity_ruta"
                        android:screenOrientation="portrait" >
                        <meta-data
                            android:name="android.support.PARENT_ACTIVITY"
                            android:value="com.myapp.FragmentTabsPdv" />
                    </activity>
                    <activity
                        android:name="com.myapp.BaseActivity"
                        android:label="@string/title_activity_base"
                        android:screenOrientation="portrait" >
                    </activity>
                    <activity
                        android:name="com.myapp.SettingsActivity"
                        android:label="@string/title_activity_settings"
                        android:screenOrientation="portrait" >
                        <meta-data
                            android:name="android.support.PARENT_ACTIVITY"
                            android:value="com.myapp.DashBoard" />
                    </activity>
                    <activity
                        android:name="com.myapp.InformacionPdvActivity"
                        android:label="@string/infoPdv"
                        android:screenOrientation="portrait" >
                        <meta-data
                            android:name="android.support.PARENT_ACTIVITY"
                            android:value="com.myapp.RutaActivity" />
                    </activity>
                
                    <receiver android:name="com.myapp.BaseActivity$NetworkChangeReceiver" >
                        <intent-filter>
                            <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
                        </intent-filter>
                    </receiver>
                
                    <activity
                        android:name="com.myapp.MetricaTabs"
                        android:label="@string/title_activity_metrica_tabs"
                        android:screenOrientation="portrait"
                        android:windowSoftInputMode="adjustPan" >
                        <meta-data
                            android:name="android.support.PARENT_ACTIVITY"
                            android:value="com.myapp.RutaActivity" />
                    </activity>
                
                    <meta-data
                        android:name="com.crashlytics.ApiKey"
                        android:value="7d80161d908dd5424f232598dba254c7d2a43307" />
                
                    <activity
                        android:name="com.myapp.SendMessageActivity"
                        android:label="@string/title_activity_send_message" >
                    </activity>
                </application>
                

                推荐答案

                确保您在手机中安装的应用不是使用调试密钥库构建的 apk.如果 Play 商店应用程序证书与已安装的应用程序证书不匹配,则 Play 商店将始终显示为打开"按钮而不是更新".当我对调试进行反复试验并签署 apk 的唯一签名 apk 工作时,我意识到了这一点.并且始终使用 versionCode 而不是 versionName 来比较版本.

                Make sure the app you have installed in your mobile is not an apk built with debug keystore. The play store will show always as "Open" button instead of "Update" if the play store app certificate doesn't match with the installed app certificate. I realized this when I did trial and error with debug and signed apk's only signed apk worked. And always use versionCode for comparing versions instead of versionName.

                这篇关于Play 商店有新版本的应用程序,但没有显示更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                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='E2Ta4'></tbody>
                  <bdo id='E2Ta4'></bdo><ul id='E2Ta4'></ul>

                  1. <legend id='E2Ta4'><style id='E2Ta4'><dir id='E2Ta4'><q id='E2Ta4'></q></dir></style></legend>

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

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