| LEFT | RIGHT | 
|   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     <!-- removed SyncPreference as of issue #2350 --> |  14     <!-- Removed SyncPreference as part of https://issues.adblockplus.org/ticket
    /2350 --> | 
|  15  |  15  | 
|  16     <PreferenceScreen android:title="@string/pref_category_customize" > |  16     <PreferenceScreen android:title="@string/pref_category_customize" > | 
|  17         <intent android:action="android.intent.action.VIEW" |  17         <intent android:action="android.intent.action.VIEW" | 
|  18                 android:targetPackage="@string/android_package_name" |  18                 android:targetPackage="@string/android_package_name" | 
|  19                 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
    ces" > |  19                 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
    ces" > | 
|  20             <extra |  20             <extra | 
|  21                 android:name="resource" |  21                 android:name="resource" | 
|  22                 android:value="preferences_customize" /> |  22                 android:value="preferences_customize" /> | 
|  23         </intent> |  23         </intent> | 
|  24     </PreferenceScreen> |  24     </PreferenceScreen> | 
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  77         <intent android:action="android.intent.action.VIEW" |  77         <intent android:action="android.intent.action.VIEW" | 
|  78                 android:targetPackage="@string/android_package_name" |  78                 android:targetPackage="@string/android_package_name" | 
|  79                 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
    ces" > |  79                 android:targetClass="org.mozilla.gecko.preferences.GeckoPreferen
    ces" > | 
|  80             <extra |  80             <extra | 
|  81                 android:name="resource" |  81                 android:name="resource" | 
|  82                 android:value="preferences_devtools" /> |  82                 android:value="preferences_devtools" /> | 
|  83         </intent> |  83         </intent> | 
|  84     </PreferenceScreen> |  84     </PreferenceScreen> | 
|  85  |  85  | 
|  86 </PreferenceScreen> |  86 </PreferenceScreen> | 
| LEFT | RIGHT |