Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know my Android application has been upgraded in order to reset an alarm?

Tags:

android

I noticed that an alarm is disabled when the application which sets this alarm has been upgraded. Is that true ?

Until now, I used the SharedPreferences with a FIRST_RUN key in order to know if it's the first run of my application. If I don't find this key, I enable the alarm and set FIRST_RUN to false, else I do nothing.

But I noticed also that these preferences remain intact between app upgrade !

So after an upgrade, the FIRST_RUN key is already false, so I do nothing while my alarm need to be enabled.

How to handle such case ?

Thanks in advance

like image 980
tbruyelle Avatar asked Jan 25 '10 16:01

tbruyelle


3 Answers

Solution by Daniel Lew :

Need a receiver with the following lines in manifest :

<receiver android:name=".OnUpgradeReceiver">
  <intent-filter>
    <action android:name="android.intent.action.PACKAGE_REPLACED" />
    <data android:scheme="package" android:path="your.app.package" />
  </intent-filter>
</receiver>

android:path is used in order to prevent OnUpgradeReceiver to be triggered by any upgrade of any application.

like image 172
tbruyelle Avatar answered Sep 29 '22 04:09

tbruyelle


I've never tried this myself, but what about creating a BroadcastReceiver that listens to the ACTION_PACKAGE_REPLACED Intent?

I've thought about trying this before, but I'm not sure if there's a chicken-and-egg problem with it or not (e.g., does the Intent get sent before the new upgraded application can receive it?). Worth a try, though.

like image 39
Dan Lew Avatar answered Sep 29 '22 05:09

Dan Lew


Simply, listen to the android.intent.action.MY_PACKAGE_REPLACED ... This INTENT will notify you if a new version of your application has been installed over an existing one

Note: This intent can is available starting from API 12

like image 39
Sami Eltamawy Avatar answered Sep 29 '22 05:09

Sami Eltamawy