Wed, 31 Dec 2014 07:22:50 +0100
Correct previous dual key logic pending first delivery installment.
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <!-- Preferences screen for pre-v11 Android devices that do not support
7 PreferenceFragment or ActionBar. Preference changes here should be mirrored
8 to xml-v11/preferences.xml. -->
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
11 xmlns:gecko="http://schemas.android.com/apk/res-auto"
12 android:enabled="false">
14 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_preference.sync"
15 android:title="@string/pref_sync"
16 android:persistent="false" />
18 <PreferenceScreen android:title="@string/pref_category_customize" >
19 <intent android:action="android.intent.action.VIEW"
20 android:targetPackage="@string/android_package_name"
21 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
22 <extra
23 android:name="resource"
24 android:value="preferences_customize" />
25 </intent>
26 </PreferenceScreen>
28 <PreferenceScreen android:title="@string/pref_category_display" >
29 <intent android:action="android.intent.action.VIEW"
30 android:targetPackage="@string/android_package_name"
31 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
32 <extra
33 android:name="resource"
34 android:value="preferences_display" />
35 </intent>
36 </PreferenceScreen>
38 <PreferenceScreen android:title="@string/pref_category_privacy_short" >
39 <intent android:action="android.intent.action.VIEW"
40 android:targetPackage="@string/android_package_name"
41 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
42 <extra
43 android:name="resource"
44 android:value="preferences_privacy" />
45 </intent>
46 </PreferenceScreen>
48 <PreferenceScreen android:title="@string/pref_category_vendor">
49 <intent android:action="android.intent.action.VIEW"
50 android:targetPackage="@string/android_package_name"
51 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
52 <extra
53 android:name="resource"
54 android:value="preferences_vendor" />
55 </intent>
56 </PreferenceScreen>
57 <PreferenceScreen android:title="@string/pref_category_devtools">
58 <intent android:action="android.intent.action.VIEW"
59 android:targetPackage="@string/android_package_name"
60 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferences" >
61 <extra
62 android:name="resource"
63 android:value="preferences_devtools" />
64 </intent>
65 </PreferenceScreen>
67 </PreferenceScreen>