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="318" | 4 android:versionCode="318" |
5 android:versionName="1.2.1" > | 5 android:versionName="1.2.1" > |
6 | 6 |
7 <uses-sdk | 7 <uses-sdk |
8 android:minSdkVersion="7" | 8 android:minSdkVersion="7" |
9 android:targetSdkVersion="16" /> | 9 android:targetSdkVersion="16" /> |
10 | 10 |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 <receiver android:name=".Starter" > | 65 <receiver android:name=".Starter" > |
66 <intent-filter> | 66 <intent-filter> |
67 <action android:name="android.intent.action.BOOT_COMPLETED" /> | 67 <action android:name="android.intent.action.BOOT_COMPLETED" /> |
68 </intent-filter> | 68 </intent-filter> |
69 <intent-filter> | 69 <intent-filter> |
70 <action android:name="android.intent.action.PACKAGE_REPLACED" /> | 70 <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
71 | 71 |
72 <data android:scheme="package" /> | 72 <data android:scheme="package" /> |
73 </intent-filter> | 73 </intent-filter> |
74 </receiver> | 74 </receiver> |
75 <receiver android:name=".updater.AlarmReceiver" /> | |
76 </application> | 75 </application> |
77 | 76 |
78 </manifest> | 77 </manifest> |
OLD | NEW |