監聽APP升級廣播處理
阿新 • • 發佈:2017-07-03
廣播 -m 版本號 onupgrade intent date pos sof post
當舊版本號的用戶升級新版本號的時候須要又一次設定一些值處理,這時候須要監聽升級版本號的廣播
<receiver android:name=".OnUpgradeReceiver"> <intent-filter> <action android:name="android.intent.action.PACKAGE_REPLACED" /> <data android:scheme="package" /> </intent-filter> </receiver>
當設備是在API12以上的版本號能夠直接使用MY_PACKAGE_REPLACED
<receiver android:name=".app.AppUpdateReceiver"> <intent-filter> <action android:name="android.intent.action.MY_PACKAGE_REPLACED" /> </intent-filter> </receiver>
監聽APP升級廣播處理