]> www.average.org Git - YkNeoCR.git/blob - AndroidManifest.xml
begin converting to multiple ops per request
[YkNeoCR.git] / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3           package="org.average.nfcauthcr"
4           android:versionCode="1"
5           android:versionName="1.0">
6         <uses-sdk android:minSdkVersion="10"
7                   android:targetSdkVersion="17" />
8
9         <uses-permission android:name="android.permission.NFC" />
10         <uses-feature android:name="android.hardware.nfc"
11                       android:required="true" />
12
13         <application android:label="@string/app_name"
14                          android:icon="@drawable/yalekey"
15                          android:allowBackup="true"
16                          android:theme="@style/AppTheme">
17
18                 <activity android:name=".Enroll"
19                           android:label="@string/app_name">
20                         <intent-filter>
21                                 <action android:name="android.intent.action.MAIN" />
22                                 <category android:name="android.intent.category.LAUNCHER" />
23                         </intent-filter>
24                 </activity>
25
26                 <activity android:name=".QueryCrToken"
27                           android:label="@string/app_name"
28                           android:theme="@style/TransparentDialog">>
29                         <intent-filter>
30                                 <action android:name="org.openintents.action.CHALLENGE_FOR_RESPONSE" />
31                                 <category android:name="android.intent.category.DEFAULT" />
32                         </intent-filter>
33                 </activity>
34
35         </application>
36 </manifest>