summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Hamilton <jham@android.com>2011-01-24 14:52:07 -0600
committerJeff Hamilton <jham@android.com>2011-01-25 16:34:04 -0600
commit24dbea55709219e42aa3b6b6578f29ffd447a786 (patch)
treed84144fe292579bf2ce2135013dc6e8eb08e009f /AndroidManifest.xml
parent7f5487be0414b1f92b41cc5f7b0b7db846d9b1c9 (diff)
downloadpackages_apps_nfc-24dbea55709219e42aa3b6b6578f29ffd447a786.zip
packages_apps_nfc-24dbea55709219e42aa3b6b6578f29ffd447a786.tar.gz
packages_apps_nfc-24dbea55709219e42aa3b6b6578f29ffd447a786.tar.bz2
Stop using URIs for ACTION_TECHNOLOGY_DISCOVERED
The pattern matching wasn't sufficient with the move to identifying technologies with their class names so now we use a custom dispatching mechanism. Change-Id: I3e6379d454458bbb65730ade32cdaa1680c5e339
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml11
1 files changed, 10 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index bbac974..88f1743 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -14,6 +14,15 @@
<application android:name=".NfcService"
android:icon="@drawable/icon"
android:label="@string/app_name"
- android:persistent="true" >
+ android:persistent="true"
+ >
+
+ <activity android:name=".TechListChooserActivity"
+ android:theme="@*android:style/Theme.Dialog.Alert"
+ android:finishOnCloseSystemDialogs="true"
+ android:excludeFromRecents="true"
+ android:multiprocess="true"
+ />
+
</application>
</manifest>