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

Side by Side Diff: adblockplussbrowser/AndroidManifest.xml

Issue 29424711: Issue 4777 - Add support for Gradle build (Closed)
Patch Set: Adjusting ignored files and updating support lib Created May 3, 2017, 1:43 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 | « .settings/org.eclipse.jdt.core.prefs ('k') | adblockplussbrowser/build.gradle » ('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" 3 package="org.adblockplus.adblockplussbrowser"
4 android:versionCode="9" 4 android:versionCode="9"
5 android:versionName="1.0.4" > 5 android:versionName="1.0.4" >
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="21" 8 android:minSdkVersion="21"
9 android:targetSdkVersion="23" /> 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" />
14 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 14 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
15 15
16 <application 16 <application
17 android:allowBackup="true" 17 android:allowBackup="true"
18 android:icon="@drawable/ic_launcher" 18 android:icon="@drawable/ic_launcher"
19 android:label="@string/app_name" 19 android:label="@string/app_name"
(...skipping 20 matching lines...) Expand all
40 40
41 <service android:name="org.adblockplus.sbrowser.contentblocker.engine.En gineService" /> 41 <service android:name="org.adblockplus.sbrowser.contentblocker.engine.En gineService" />
42 42
43 <provider 43 <provider
44 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider" 44 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider"
45 android:authorities="org.adblockplus.adblockplussbrowser.contentBloc ker.contentProvider" 45 android:authorities="org.adblockplus.adblockplussbrowser.contentBloc ker.contentProvider"
46 android:exported="true" /> 46 android:exported="true" />
47 </application> 47 </application>
48 48
49 </manifest> 49 </manifest>
OLDNEW
« no previous file with comments | « .settings/org.eclipse.jdt.core.prefs ('k') | adblockplussbrowser/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld