2015-12-12 02:08:47 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-07 23:48:43 +01:00
|
|
|
<android.support.v7.preference.PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-12-12 02:08:47 +01:00
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
<SwitchPreferenceCompat
|
2016-04-18 00:20:58 +02:00
|
|
|
android:defaultValue="true"
|
2015-12-12 02:08:47 +01:00
|
|
|
android:key="acra.enable"
|
|
|
|
android:summary="@string/pref_acra_summary"
|
2016-04-18 00:20:58 +02:00
|
|
|
android:title="@string/pref_enable_acra"/>
|
|
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:enabled="false"
|
|
|
|
android:key="@string/pref_enable_automatic_updates_key"
|
|
|
|
android:summary="@string/pref_enable_automatic_updates_summary"
|
|
|
|
android:title="@string/pref_enable_automatic_updates"/>
|
2015-12-12 02:08:47 +01:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_version"
|
2016-04-18 00:20:58 +02:00
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/version"/>
|
2015-12-12 02:08:47 +01:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_build_time"
|
2016-04-18 00:20:58 +02:00
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/build_time"/>
|
2015-12-12 02:08:47 +01:00
|
|
|
|
2016-03-07 23:48:43 +01:00
|
|
|
</android.support.v7.preference.PreferenceScreen>
|