Skip to content

Commit c4775e0

Browse files
authored
Create AndroidManifest.xml
1 parent 3849210 commit c4775e0

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

AndroidManifest.xml

+22
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)