This feature is experimental and disabled by default At ACardEmulator's compile time it is required: - to add the correct application identifier to aid_list.xml - enable the connection to pcsc-relay by setting useVPCD
38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.vsmartcard.acardemulator" >
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
<uses-permission android:name="android.permission.NFC" />
|
|
<uses-feature android:name="android.hardware.nfc" android:required="true" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<service android:name=".SimulatorService"
|
|
android:exported="true"
|
|
android:permission="android.permission.BIND_NFC_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.nfc.cardemulation.action.HOST_APDU_SERVICE"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
</intent-filter>
|
|
<meta-data android:name="android.nfc.cardemulation.host_apdu_service"
|
|
android:resource="@xml/aid_list"/>
|
|
</service>
|
|
</application>
|
|
|
|
</manifest>
|