Includes jCardSim to emulate the following Java Card Applets in Android's host card emulation: - jCardSim Team's Hello World Applet - Philip Wendland's ISO Applet - Yubico's OpenPGP Applet - Yubico's OATH Applet
17 lines
607 B
XML
17 lines
607 B
XML
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context="com.vsmartcard.remotesmartcardreader.app.MainActivity" >
|
|
|
|
<item android:id="@+id/action_copy"
|
|
android:title="@string/action_copy"
|
|
android:icon="@drawable/ic_action_copy"
|
|
app:showAsAction="withText" />
|
|
|
|
<item android:id="@+id/action_delete"
|
|
android:title="@string/action_delete"
|
|
android:icon="@drawable/ic_action_delete"
|
|
app:showAsAction="withText" />
|
|
|
|
</menu>
|