Files
vsmartcard/ACardEmulator/app/src/main/res/xml/settings.xml
Frank Morgner 65cbac22c5 Implement deactivation of Applets
Actually implements and fixes what was intended with
f401923005
2016-04-12 22:10:26 -04:00

40 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Java Card Emulator">
<SwitchPreference
android:title="@string/applet_helloworld"
android:switchTextOn="@string/aid_helloworld"
android:key="activate_helloworld"
android:defaultValue="false"
/>
<SwitchPreference
android:title="@string/applet_openpgp"
android:switchTextOn="@string/aid_openpgp"
android:key="activate_openpgp"
android:defaultValue="true"
/>
<SwitchPreference
android:title="@string/applet_oath"
android:switchTextOn="@string/aid_oath"
android:key="activate_oath"
android:defaultValue="true"
/>
<SwitchPreference
android:title="@string/applet_isoapplet"
android:switchTextOn="@string/aid_isoapplet"
android:key="activate_isoapplet"
android:defaultValue="true"
/>
<SwitchPreference
android:title="@string/applet_gidsapplet"
android:switchTextOn="@string/aid_gidsapplet"
android:key="activate_gidsapplet"
android:defaultValue="true"
/>
</PreferenceCategory>
</PreferenceScreen>