diff options
author | mike wakerly <mikey@google.com> | 2011-09-27 15:54:21 -0700 |
---|---|---|
committer | mike wakerly <mikey@google.com> | 2011-09-28 11:03:01 -0700 |
commit | 8e85fe445d229fba5d101b4f95fe0dfa34a8601e (patch) | |
tree | 9284a6ff86a6522919e402dd4707ddd8fb318036 /src/com/android/nfc/NfcService.java | |
parent | a92d7b39de4a456ac6e3f7d954b9eef3fe2b61e2 (diff) | |
download | packages_apps_nfc-8e85fe445d229fba5d101b4f95fe0dfa34a8601e.zip packages_apps_nfc-8e85fe445d229fba5d101b4f95fe0dfa34a8601e.tar.gz packages_apps_nfc-8e85fe445d229fba5d101b4f95fe0dfa34a8601e.tar.bz2 |
NfcService: call enableAppSwitches for additional events.
This addresses the responsiveness issue identified in b/5140941
Change-Id: I8fad061be2e3f1006e4e2910db84c0a3360e2a0a
Diffstat (limited to 'src/com/android/nfc/NfcService.java')
-rwxr-xr-x | src/com/android/nfc/NfcService.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/nfc/NfcService.java b/src/com/android/nfc/NfcService.java index 84b0cdf..4457c34 100755 --- a/src/com/android/nfc/NfcService.java +++ b/src/com/android/nfc/NfcService.java @@ -1524,6 +1524,7 @@ public class NfcService extends Application implements DeviceHostListener { } private void sendSeBroadcast(Intent intent) { + mNfcDispatcher.resumeAppSwitches(); intent.addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES); mContext.sendBroadcast(intent, NFCEE_ADMIN_PERM); } |