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

Delta Between Two Patch Sets: adblockplussbrowser/AndroidManifest.xml

Issue 29727633: Issue 6502 - Add Chinese build variant (Closed)
Left Patch Set: Created March 19, 2018, 11:28 p.m.
Right Patch Set: Reverting changes in package name due to an error Created March 20, 2018, 12:10 p.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 | « no previous file | adblockplussbrowser/build.gradle » ('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="${applicationId}" 3 package="org.adblockplus.adblockplussbrowser"
diegocarloslima 2018/03/19 23:39:49 This is just to keep consistency. We shall remove
diegocarloslima 2018/03/20 12:12:18 That change would produce a 'Cannot read packageNa
4 android:versionCode="13" 4 android:versionCode="13"
5 android:versionName="1.1.3" > 5 android:versionName="1.1.3" >
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="21" 8 android:minSdkVersion="21"
9 android:targetSdkVersion="25" /> 9 android:targetSdkVersion="25" />
10 10
11 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" /> 11 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" />
12 <uses-permission android:name="android.permission.INTERNET" /> 12 <uses-permission android:name="android.permission.INTERNET" />
13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
(...skipping 24 matching lines...) Expand all
38 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion" 38 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion"
39 android:value="API_1.0" /> 39 android:value="API_1.0" />
40 40
41 <provider 41 <provider
42 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider" 42 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider"
43 android:authorities="${applicationId}.contentBlocker.contentProvider " 43 android:authorities="${applicationId}.contentBlocker.contentProvider "
44 android:exported="true" /> 44 android:exported="true" />
45 </application> 45 </application>
46 46
47 </manifest> 47 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld