Slide 62
Slide 62 text
ApplicationUpdatedReceiver
case Intent.ACTION_MY_PACKAGE_REPLACED:
AppPreferences preferences = AppPreferences.from(context);
int version = preferences.
getInt(PREVIOUS_APP_VERSION, VERSION_CODES.NARIM);
if (version < VERSION_CODES.ONEILL) {
bumpToOneill(context);
version = VERSION_CODES.ONEILL;
}
if (version < VERSION_CODES.PENDERGAST) {
bumpToPendergast(context);
version = VERSION_CODES.PENDERGAST;
}
preferences.edit().
putInt(PREVIOUS_APP_VERSION, version).
apply();