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

Side by Side Diff: adblockplussbrowser/AndroidManifest.xml

Issue 29728654: Issue 6506 - Support Android Studio and Gradle only (Closed)
Patch Set: Created March 20, 2018, 5:50 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « README.md ('k') | adblockplussbrowser/project.properties » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.adblockplussbrowser"
4 android:versionCode="13"
5 android:versionName="1.1.3" >
6
7 <uses-sdk
8 android:minSdkVersion="21"
9 android:targetSdkVersion="25" />
10 3
11 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" /> 4 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" />
12 <uses-permission android:name="android.permission.INTERNET" /> 5 <uses-permission android:name="android.permission.INTERNET" />
13 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 6 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
14 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 7 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
15 8
16 <application 9 <application
17 android:allowBackup="true" 10 android:allowBackup="true"
18 android:icon="@drawable/ic_launcher" 11 android:icon="@drawable/ic_launcher"
19 android:label="@string/app_name" 12 android:label="@string/app_name"
(...skipping 18 matching lines...) Expand all
38 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion" 31 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion"
39 android:value="API_1.0" /> 32 android:value="API_1.0" />
40 33
41 <provider 34 <provider
42 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider" 35 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider"
43 android:authorities="org.adblockplus.adblockplussbrowser.contentBloc ker.contentProvider" 36 android:authorities="org.adblockplus.adblockplussbrowser.contentBloc ker.contentProvider"
44 android:exported="true" /> 37 android:exported="true" />
45 </application> 38 </application>
46 39
47 </manifest> 40 </manifest>
OLDNEW
« no previous file with comments | « README.md ('k') | adblockplussbrowser/project.properties » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld