diff options
| author | Ruchi Kandoi <kandoiruchi@google.com> | 2017-04-25 16:23:27 -0700 |
|---|---|---|
| committer | Ruchi Kandoi <kandoiruchi@google.com> | 2017-06-29 16:50:49 -0700 |
| commit | edddf573dfc549b33f49ba1357fe712c5c64c8a6 (patch) | |
| tree | 372b9d8d4f0d6f965232ff84478cf1b3bdd25f8d /AndroidManifest.xml | |
| parent | e03dbfc4edcc2c09aca01dee596487dabe13a764 (diff) | |
| download | platform_packages_apps_Nfc-edddf573dfc549b33f49ba1357fe712c5c64c8a6.tar.gz platform_packages_apps_Nfc-edddf573dfc549b33f49ba1357fe712c5c64c8a6.tar.bz2 platform_packages_apps_Nfc-edddf573dfc549b33f49ba1357fe712c5c64c8a6.zip | |
Adds a Boot complete receiver to disable NFC application
NFC application should be disabled for systems which do not support NFC,
adding a boot complete receiver will make sure that the component is
disabled.
Bug: 63065578
Test: manual
Change-Id: Ic2ca9f7b1f9d8da4ef2ca429069dd1946ca6e308
Signed-off-by: Ruchi Kandoi<kandoiruchi@google.com>
Diffstat (limited to 'AndroidManifest.xml')
| -rwxr-xr-x | AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 7612a57d..67a087ff 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -153,6 +153,12 @@ android:process=":beam" /> + <receiver android:name=".NfcBootCompletedReceiver"> + <intent-filter> + <action android:name="android.intent.action.BOOT_COMPLETED" /> + </intent-filter> + </receiver> + <service android:name=".handover.PeripheralHandoverService" /> </application> |
