We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3849210 commit c4775e0Copy full SHA for c4775e0
AndroidManifest.xml
@@ -0,0 +1,22 @@
1
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
+ package="com.example.nfcemulator">
3
+
4
+ <application
5
+ android:allowBackup="true"
6
+ android:icon="@mipmap/ic_launcher"
7
+ android:label="@string/app_name"
8
+ android:theme="@style/Theme.AppCompat.NoActionBar">
9
10
+ <service
11
+ android:name=".NfcEmulatorService"
12
+ android:exported="true"
13
+ android:permission="android.permission.BIND_NFC_SERVICE">
14
+ <intent-filter>
15
+ <action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE" />
16
+ </intent-filter>
17
+ <meta-data
18
+ android:name="android.nfc.cardemulation.host_apdu_service"
19
+ android:resource="@xml/apduservice" />
20
+ </service>
21
+ </application>
22
+</manifest>
0 commit comments