LEFT | RIGHT |
(no file at all) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="org.adblockplus.android" |
| 4 android:versionCode="359" |
| 5 android:versionName="1.3" > |
| 6 |
| 7 <uses-sdk |
| 8 android:minSdkVersion="7" |
| 9 android:targetSdkVersion="16" /> |
| 10 |
| 11 <uses-permission android:name="android.permission.INTERNET" /> |
| 12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 15 <uses-permission android:name="android.permission.ACCESS_SUPERUSER" /> |
| 16 |
| 17 <uses-feature |
| 18 android:name="android.hardware.touchscreen" |
| 19 android:required="false" /> |
| 20 |
| 21 <application |
| 22 android:name=".AdblockPlus" |
| 23 android:allowBackup="true" |
| 24 android:icon="@drawable/ic_launcher" |
| 25 android:label="@string/app_name" |
| 26 android:theme="@style/AppTheme" > |
| 27 <activity |
| 28 android:name=".Preferences" |
| 29 android:label="@string/app_name" > |
| 30 <intent-filter> |
| 31 <action android:name="android.intent.action.MAIN" /> |
| 32 |
| 33 <category android:name="android.intent.category.LAUNCHER" /> |
| 34 </intent-filter> |
| 35 </activity> |
| 36 <activity |
| 37 android:name=".AdvancedPreferences" |
| 38 android:label="@string/app_name" /> |
| 39 <activity |
| 40 android:name=".ConfigurationActivity" |
| 41 android:excludeFromRecents="true" |
| 42 android:label="@string/app_name" |
| 43 android:launchMode="singleInstance" |
| 44 android:theme="@style/Theme.Sherlock.Dialog" /> |
| 45 <activity |
| 46 android:name=".ProxyConfigurationActivity" |
| 47 android:excludeFromRecents="true" |
| 48 android:label="@string/proxysettings_name" |
| 49 android:launchMode="singleInstance" |
| 50 android:theme="@style/Theme.Sherlock.Dialog" /> |
| 51 <activity |
| 52 android:name=".CrashReportDialog" |
| 53 android:excludeFromRecents="true" |
| 54 android:label="@string/crash_name" |
| 55 android:launchMode="singleInstance" |
| 56 android:theme="@style/Theme.Sherlock.Dialog" /> |
| 57 <activity |
| 58 android:name=".updater.UpdaterActivity" |
| 59 android:excludeFromRecents="true" |
| 60 android:theme="@android:style/Theme.Translucent" /> |
| 61 |
| 62 <service android:name=".ProxyService" /> |
| 63 <service android:name=".updater.UpdaterService" /> |
| 64 |
| 65 <receiver android:name=".Starter" > |
| 66 <intent-filter> |
| 67 <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 68 </intent-filter> |
| 69 <intent-filter> |
| 70 <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
| 71 |
| 72 <data android:scheme="package" /> |
| 73 </intent-filter> |
| 74 </receiver> |
| 75 </application> |
| 76 |
| 77 </manifest> |
LEFT | RIGHT |