| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" | 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 package="org.adblockplus.android" | 3 package="org.adblockplus.android" |
| 4 android:versionCode="146" | 4 android:versionCode="146" |
| 5 android:versionName="1.0.1a" > | 5 android:versionName="1.0.1a" > |
| 6 | 6 |
| 7 <uses-sdk | 7 <uses-sdk |
| 8 android:minSdkVersion="7" | 8 android:minSdkVersion="7" |
| 9 android:targetSdkVersion="7" /> | 9 android:targetSdkVersion="7" /> |
| 10 | 10 |
| 11 <uses-permission android:name="android.permission.INTERNET" /> | 11 <uses-permission android:name="android.permission.INTERNET" /> |
| 12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | 12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
| 13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | 13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 14 | 14 |
| 15 <application | 15 <application |
| 16 android:name=".AdblockPlus" | 16 android:name=".AdblockPlus" |
| 17 android:icon="@drawable/ic_launcher" | 17 android:icon="@drawable/ic_launcher" |
| 18 android:label="@string/app_name" > | 18 android:label="@string/app_name" |
| 19 android:theme="@style/AppTheme"> |
| 19 <activity | 20 <activity |
| 20 android:name=".Preferences" | 21 android:name=".Preferences" |
| 21 android:label="@string/app_name" > | 22 android:label="@string/app_name" > |
| 22 <intent-filter> | 23 <intent-filter> |
| 23 <action android:name="android.intent.action.MAIN" /> | 24 <action android:name="android.intent.action.MAIN" /> |
| 24 | 25 |
| 25 <category android:name="android.intent.category.LAUNCHER" /> | 26 <category android:name="android.intent.category.LAUNCHER" /> |
| 26 </intent-filter> | 27 </intent-filter> |
| 27 </activity> | 28 </activity> |
| 28 <activity | 29 <activity |
| (...skipping 26 matching lines...) Expand all Loading... |
| 55 <intent-filter> | 56 <intent-filter> |
| 56 <action android:name="android.intent.action.PACKAGE_REPLACED" /> | 57 <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
| 57 | 58 |
| 58 <data android:scheme="package" /> | 59 <data android:scheme="package" /> |
| 59 </intent-filter> | 60 </intent-filter> |
| 60 </receiver> | 61 </receiver> |
| 61 <receiver android:name=".updater.AlarmReceiver" /> | 62 <receiver android:name=".updater.AlarmReceiver" /> |
| 62 </application> | 63 </application> |
| 63 | 64 |
| 64 </manifest> | 65 </manifest> |
| OLD | NEW |