diff options
Diffstat (limited to 'AndroidManifest.xml')
-rwxr-xr-x | AndroidManifest.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 3ce49b8..b896e07 100755 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="com.android.nfc3" + package="com.android.nfc" android:sharedUserId="android.uid.nfc" android:sharedUserLabel="@string/nfcUserLabel" > @@ -20,7 +20,7 @@ <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.VIBRATE" /> - <application android:name="com.android.nfc.NfcService" + <application android:name=".NfcService" android:icon="@drawable/icon" android:label="@string/app_name" android:persistent="true" @@ -29,13 +29,13 @@ <meta-data android:name="com.google.android.backup.api_key" android:value="AEdPqrEAAAAIEXGvR1H2lq6SEOC7O7rGHoAmAf-GHCR_EhLqzg" /> - <activity android:name="com.android.nfc.TechListChooserActivity" + <activity android:name=".TechListChooserActivity" android:theme="@*android:style/Theme.Dialog.Alert" android:finishOnCloseSystemDialogs="true" android:excludeFromRecents="true" android:multiprocess="true" /> - <activity android:name="com.android.nfc.NfcRootActivity" + <activity android:name=".NfcRootActivity" android:theme="@*android:style/Theme.Translucent.NoTitleBar" android:excludeFromRecents="true" android:noHistory="true" |