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" |
(...skipping 29 matching lines...) Expand all Loading... |
40 android:targetPackage="@string/android_package_name" | 40 android:targetPackage="@string/android_package_name" |
41 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > | 41 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > |
42 <extra | 42 <extra |
43 android:name="resource" | 43 android:name="resource" |
44 android:value="preferences_privacy" /> | 44 android:value="preferences_privacy" /> |
45 </intent> | 45 </intent> |
46 </PreferenceScreen> | 46 </PreferenceScreen> |
47 | 47 |
48 <!-- Adblocking preferences --> | 48 <!-- Adblocking preferences --> |
49 <PreferenceScreen android:title="@string/abb_pref_category_adblocking" | 49 <PreferenceScreen android:title="@string/abb_pref_category_adblocking" |
50 android:summary="@string/abb_pref_category_adblocking_summ
ary_main" > | 50 android:summary="@string/abb_pref_category_adblocking_summ
ary" > |
51 <intent android:action="android.intent.action.VIEW" | 51 <intent android:action="android.intent.action.VIEW" |
52 android:targetPackage="@string/android_package_name" | 52 android:targetPackage="@string/android_package_name" |
53 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > | 53 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > |
54 <extra | 54 <extra |
55 android:name="resource" | 55 android:name="resource" |
56 android:value="preferences_abb_abp" /> | 56 android:value="preferences_abb_abp" /> |
57 </intent> | 57 </intent> |
58 </PreferenceScreen> | 58 </PreferenceScreen> |
59 | 59 |
60 <PreferenceScreen android:title="@string/pref_category_language" | 60 <PreferenceScreen android:title="@string/pref_category_language" |
(...skipping 14 matching lines...) Expand all Loading... |
75 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > | 75 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
ces" > |
76 <extra | 76 <extra |
77 android:name="resource" | 77 android:name="resource" |
78 android:value="preferences_vendor" /> | 78 android:value="preferences_vendor" /> |
79 </intent> | 79 </intent> |
80 </PreferenceScreen> | 80 </PreferenceScreen> |
81 | 81 |
82 <!-- Removed devtools as part of https://issues.adblockplus.org/ticket/2353
--> | 82 <!-- Removed devtools as part of https://issues.adblockplus.org/ticket/2353
--> |
83 | 83 |
84 </PreferenceScreen> | 84 </PreferenceScreen> |
OLD | NEW |