Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: AndroidManifest.xml

Issue 8526013: ABP/Android build files (Closed)
Left Patch Set: Created Oct. 5, 2012, 9:13 a.m.
Right Patch Set: ABP/Android build files Created Nov. 15, 2012, 6:56 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « .project ('k') | build.xml » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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="101" 4 android:versionCode="101"
5 android:versionName="0.12" > 5 android:versionName="0.13" >
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 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
15 14
16 <application 15 <application
17 android:name=".AdblockPlus" 16 android:name=".AdblockPlus"
18 android:icon="@drawable/ic_launcher" 17 android:icon="@drawable/ic_launcher"
19 android:label="@string/app_name" > 18 android:label="@string/app_name" >
20 <activity 19 <activity
21 android:name=".Preferences" 20 android:name=".Preferences"
22 android:label="@string/app_name" > 21 android:label="@string/app_name" >
23 <intent-filter> 22 <intent-filter>
24 <action android:name="android.intent.action.MAIN" /> 23 <action android:name="android.intent.action.MAIN" />
(...skipping 26 matching lines...) Expand all
51 50
52 <receiver android:name=".BootBroadcastReceiver" > 51 <receiver android:name=".BootBroadcastReceiver" >
53 <intent-filter> 52 <intent-filter>
54 <action android:name="android.intent.action.BOOT_COMPLETED" /> 53 <action android:name="android.intent.action.BOOT_COMPLETED" />
55 </intent-filter> 54 </intent-filter>
56 </receiver> 55 </receiver>
57 <receiver android:name=".updater.AlarmReceiver" /> 56 <receiver android:name=".updater.AlarmReceiver" />
58 </application> 57 </application>
59 58
60 </manifest> 59 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld