OLD | NEW |
(Empty) | |
| 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="101" |
| 5 android:versionName="0.12" > |
| 6 |
| 7 <uses-sdk |
| 8 android:minSdkVersion="7" |
| 9 android:targetSdkVersion="7" /> |
| 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 |
| 16 <application |
| 17 android:name=".AdblockPlus" |
| 18 android:icon="@drawable/ic_launcher" |
| 19 android:label="@string/app_name" > |
| 20 <activity |
| 21 android:name=".Preferences" |
| 22 android:label="@string/app_name" > |
| 23 <intent-filter> |
| 24 <action android:name="android.intent.action.MAIN" /> |
| 25 |
| 26 <category android:name="android.intent.category.LAUNCHER" /> |
| 27 </intent-filter> |
| 28 </activity> |
| 29 <activity |
| 30 android:name=".AdvancedPreferences" |
| 31 android:label="@string/app_name" /> |
| 32 <activity |
| 33 android:name=".ConfigurationActivity" |
| 34 android:excludeFromRecents="true" |
| 35 android:label="@string/app_name" |
| 36 android:launchMode="singleInstance" |
| 37 android:theme="@android:style/Theme.Dialog" /> |
| 38 <activity |
| 39 android:name=".CrashReportDialog" |
| 40 android:excludeFromRecents="true" |
| 41 android:label="@string/crash_name" |
| 42 android:launchMode="singleInstance" |
| 43 android:theme="@android:style/Theme.Dialog" /> |
| 44 <activity |
| 45 android:name=".updater.UpdaterActivity" |
| 46 android:excludeFromRecents="true" |
| 47 android:theme="@android:style/Theme.Translucent" /> |
| 48 |
| 49 <service android:name=".ProxyService" /> |
| 50 <service android:name=".updater.UpdaterService" /> |
| 51 |
| 52 <receiver android:name=".BootBroadcastReceiver" > |
| 53 <intent-filter> |
| 54 <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 55 </intent-filter> |
| 56 </receiver> |
| 57 <receiver android:name=".updater.AlarmReceiver" /> |
| 58 </application> |
| 59 |
| 60 </manifest> |
OLD | NEW |