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