OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. --> | 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
5 | 5 |
6 <!-- Preferences screen for pre-v11 Android devices that do not support | 6 <!-- Preferences screen for pre-v11 Android devices that do not support |
7 PreferenceFragment or ActionBar. Preference changes here should be mirrored | 7 PreferenceFragment or ActionBar. Preference changes here should be mirrored |
8 to xml-v11/preferences.xml. --> | 8 to xml-v11/preferences.xml. --> |
9 | 9 |
10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 10 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
11 xmlns:gecko="http://schemas.android.com/apk/res-auto" | 11 xmlns:gecko="http://schemas.android.com/apk/res-auto" |
12 android:enabled="false"> | 12 android:enabled="false"> |
13 | 13 |
14 <org.mozilla.gecko.preferences.SyncPreference android:key="android.not_a_pre
ference.sync" | 14 <!-- Removed SyncPreference as part of https://issues.adblockplus.org/ticket
/2350 --> |
15 android:title="@string/pref_sy
nc" | |
16 android:persistent="false" /> | |
17 | 15 |
18 <PreferenceScreen android:title="@string/pref_category_customize" > | 16 <PreferenceScreen android:title="@string/pref_category_customize" > |
19 <intent android:action="android.intent.action.VIEW" | 17 <intent android:action="android.intent.action.VIEW" |
20 android:targetPackage="@string/android_package_name" | 18 android:targetPackage="@string/android_package_name" |
21 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > | 19 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > |
22 <extra | 20 <extra |
23 android:name="resource" | 21 android:name="resource" |
24 android:value="preferences_customize" /> | 22 android:value="preferences_customize" /> |
25 </intent> | 23 </intent> |
26 </PreferenceScreen> | 24 </PreferenceScreen> |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 <intent android:action="android.intent.action.VIEW" | 77 <intent android:action="android.intent.action.VIEW" |
80 android:targetPackage="@string/android_package_name" | 78 android:targetPackage="@string/android_package_name" |
81 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > | 79 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > |
82 <extra | 80 <extra |
83 android:name="resource" | 81 android:name="resource" |
84 android:value="preferences_devtools" /> | 82 android:value="preferences_devtools" /> |
85 </intent> | 83 </intent> |
86 </PreferenceScreen> | 84 </PreferenceScreen> |
87 | 85 |
88 </PreferenceScreen> | 86 </PreferenceScreen> |
OLD | NEW |