replicant-packages_apps_Email/provider_src/com/android/email/service/EmailUpgradeBroadcastReceiver.java
Paul Westbrook bb68c13afa Changes to support smaller email tombstone apk size
This reduces the tombstone down by 100K

A follow-on cl will remove the unused resources from the tombstone build

Bug: 17414014
Change-Id: I5d38811b17a5273ec726e750ab123e10e36cee04
2014-09-16 13:59:07 -07:00

18 lines
629 B
Java

package com.android.email.service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
/**
* {@link BroadcastReceiver} for app upgrade. This listens to package replacement (for unbundled
* upgrade) and reboot (for OTA upgrade). The code in the {@link EmailBroadcastProcessorService}
* disables this receiver after it runs.
*/
public class EmailUpgradeBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(final Context context, final Intent intent) {
EmailBroadcastProcessorService.processUpgradeBroadcastIntent(context);
}
}