mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-26 20:33:53 +01:00
17 lines
520 B
XML
17 lines
520 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<CheckBoxPreference
|
|
android:key="eventLogging"
|
|
android:title="@string/preference_tracking"
|
|
android:summary="@string/preference_tracking_summary"
|
|
android:defaultValue="false"
|
|
/>
|
|
<ListPreference
|
|
android:key="defaultLicense"
|
|
android:title="@string/preference_license"
|
|
android:defaultValue="CC BY-SA"
|
|
/>
|
|
|
|
|
|
</PreferenceScreen>
|