summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorNick Pelly <npelly@google.com>2010-10-14 10:23:37 -0700
committerNick Pelly <npelly@google.com>2010-10-14 10:30:54 -0700
commitf067256d9556b1e01143f9ae2fd824fa5dc03138 (patch)
tree6b2913d9748972ed44cf9af21097724b607ed743 /AndroidManifest.xml
parenta886d22305284e538245438c1dbeb636f979f052 (diff)
downloadpackages_apps_nfc-f067256d9556b1e01143f9ae2fd824fa5dc03138.zip
packages_apps_nfc-f067256d9556b1e01143f9ae2fd824fa5dc03138.tar.gz
packages_apps_nfc-f067256d9556b1e01143f9ae2fd824fa5dc03138.tar.bz2
NFC application.
NFC application contains the NFC service code that implements NFC API and talks to NFC hardware. This is the first cut at moving NFC service code out of frameworks/base into application service. Android.mk are renamed to Android.mk.hide at this commit because it does not work yet. Signed-off-by: Nick Pelly <npelly@google.com>
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-xAndroidManifest.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
new file mode 100755
index 0000000..ac6a6f0
--- /dev/null
+++ b/AndroidManifest.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.nfc" >
+ <uses-permission android:name="android.permission.NFC_ADMIN" />
+ <uses-permission android:name="android.permission.NFC_RAW" />
+ <uses-permission android:name="android.permission.NFC_NOTIFY" />
+ <uses-permission android:name="android.permission.NFC_LLCP" />
+ <application android:icon="@drawable/icon"
+ android:label="@string/app_name"
+ android:persistent="true">
+ <service android:name=".NfcService">
+ </service>
+ </application>
+</manifest>