aboutsummaryrefslogtreecommitdiff
path: root/android/res/xml/preferences.xml
diff options
context:
space:
mode:
Diffstat (limited to 'android/res/xml/preferences.xml')
-rw-r--r--android/res/xml/preferences.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/android/res/xml/preferences.xml b/android/res/xml/preferences.xml
new file mode 100644
index 0000000..be88f2a
--- /dev/null
+++ b/android/res/xml/preferences.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+ <CheckBoxPreference android:key="run_forever"
+ android:title="@string/runForeverPreferenceTitle"
+ android:summary="@string/runForeverPreferenceSummary"
+ android:defaultValue="false" />
+ <CheckBoxPreference android:key="log_debug"
+ android:title="@string/logDebugPreferenceTitle"
+ android:summary="@string/logDebugPreferenceSummary"
+ android:defaultValue="false" />
+ <CheckBoxPreference android:key="show_results"
+ android:title="@string/showResultsPreferenceTitle"
+ android:summary="@string/showResultsPreferenceSummary"
+ android:defaultValue="true" />
+</PreferenceScreen>