bb68c13afa
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
18 lines
629 B
Java
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);
|
|
}
|
|
}
|