Google play auto update does not update apps

大城市里の小女人 提交于 2019-12-23 04:52:21

问题


I have make application as Home & launcher app with below manifest, When i set my application as default Launcher it will not auto update from google play, All other app auto update fine but only one application is not update

<activity
        android:name=".MainActivity"
        android:alwaysRetainTaskState="true"
        android:excludeFromRecents="true"
        android:launchMode="singleInstance"
        android:showOnLockScreen="true">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <action android:name="android.intent.action.ASSIST"/>
            <category android:name="android.intent.category.LAUNCHER"/>
            <category android:name="android.intent.category.HOME"/>
            <category android:name="android.intent.category.DEFAULT"/>

        </intent-filter>
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>

回答1:


Google Play does not update the app that is currently running. I am guessing users dislike when the app they are using restarts.




回答2:


'Auto Update' feature is from Android Play store itself, apps has nothing to do with it. User can anytime overwrite it from play store settings, to not allow app's to autoupdate.



来源:https://stackoverflow.com/questions/39504146/google-play-auto-update-does-not-update-apps

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!