2015-12-12 09:08:47 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-03-08 06:48:43 +08:00
|
|
|
<android.support.v7.preference.PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-12-12 09:08:47 +08:00
|
|
|
|
2016-03-08 06:48:43 +08:00
|
|
|
<SwitchPreferenceCompat
|
2016-04-18 06:20:58 +08:00
|
|
|
android:defaultValue="true"
|
2015-12-12 09:08:47 +08:00
|
|
|
android:key="acra.enable"
|
|
|
|
android:summary="@string/pref_acra_summary"
|
2016-04-18 06:20:58 +08: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 09:08:47 +08:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_version"
|
2016-04-18 06:20:58 +08:00
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/version"/>
|
2015-12-12 09:08:47 +08:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="@string/pref_build_time"
|
2016-04-18 06:20:58 +08:00
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/build_time"/>
|
2015-12-12 09:08:47 +08:00
|
|
|
|
2016-03-08 06:48:43 +08:00
|
|
|
</android.support.v7.preference.PreferenceScreen>
|