-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
23 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="app_name">VirtualJavaScriptCard</string> | ||
<string name="action_settings">Settings</string> | ||
<string name="hello_world">Hello world!</string> | ||
<string name="aiddescription">aiddescription</string> | ||
<string name="servicedesc">servicedesc</string> | ||
|
||
<string name="PPSE">PPSE</string> | ||
<string name="Visa">Visa</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
<host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:apduServiceBanner="@drawable/ic_launcher" | ||
android:description="@string/servicedesc" | ||
android:requireDeviceUnlock="false" > | ||
android:requireDeviceUnlock="true" > | ||
|
||
<aid-group | ||
android:category="payment" | ||
android:description="@string/aiddescription" > | ||
<aid-filter android:name="A0000000041010" /> <!-- Mastercard credit or debit --> | ||
<aid-filter android:name="A0000000043060"/> <!-- Maestro (debit card) --> | ||
<aid-filter android:name="315041592E5359532E4444463031" /> <!-- PSE --> | ||
|
||
<!-- "2PAY.SYS.DDF01" --> | ||
<aid-filter android:name="325041592E5359532E4444463031" android:description="@string/PPSE"/> | ||
|
||
<!-- VISA MSD AID --> | ||
<aid-filter android:name="A0000000031010" android:description="@string/Visa"/> | ||
</aid-group> | ||
<aid-group | ||
android:category="other" | ||
android:description="@string/aiddescription" > | ||
<aid-filter android:name="F0010203040506" /> | ||
<aid-filter android:name="F0394148148100" /> | ||
<aid-filter android:name="A000000151000000" /> | ||
<aid-filter android:name="A000000003000000" /> | ||
<aid-filter android:name="A0000000031010" /> | ||
<aid-filter android:name="A0000000041010" /> | ||
<aid-filter android:name="A000000167413000ff"/> <!-- jcop id --> | ||
<aid-filter android:name="315041592e5359532e4444463031" /><!-- PPSE --> | ||
<aid-filter android:name="F0010203040506" /> <!-- Test AID 1 --> | ||
<aid-filter android:name="F0394148148100" /> <!-- Test AID 2 --> | ||
<aid-filter android:name="F04E66E75C02D8" /> <!-- xposed mod --> | ||
<aid-filter android:name="A000000151000000" /> <!-- Gp 2.2 --> | ||
<aid-filter android:name="A000000003000000" /> <!-- GP 2.1 --> | ||
<aid-filter android:name="A000000167413000ff" /> <!-- jcop id --> | ||
</aid-group> | ||
|
||
</host-apdu-service> |