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

Side by Side Diff: adblockplussbrowser/AndroidManifest.xml

Issue 29760569: Issue 6238 - Download/store notifications.json (Closed)
Patch Set: Created May 15, 2018, 9:57 a.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 | « no previous file | adblockplussbrowser/res/values/sysstrings.xml » ('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 4
5 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" /> 5 <uses-permission android:name="com.samsung.android.sbrowser.permission.CONTE NTBLOCKER" />
6 <uses-permission android:name="android.permission.INTERNET" /> 6 <uses-permission android:name="android.permission.INTERNET" />
7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> 8 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
9 9
10 <application 10 <application
(...skipping 18 matching lines...) Expand all
29 </receiver> 29 </receiver>
30 30
31 <meta-data 31 <meta-data
32 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion" 32 android:name="com.samsung.android.sbrowser.contentBlocker.interfaceV ersion"
33 android:value="API_1.0" /> 33 android:value="API_1.0" />
34 34
35 <provider 35 <provider
36 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider" 36 android:name="org.adblockplus.sbrowser.contentblocker.ContentBlocker ContentProvider"
37 android:authorities="${applicationId}.contentBlocker.contentProvider " 37 android:authorities="${applicationId}.contentBlocker.contentProvider "
38 android:exported="true" /> 38 android:exported="true" />
39
40 <service
41 android:name="org.adblockplus.sbrowser.contentblocker.engine.Downloa dJobService"
42 android:permission="android.permission.BIND_JOB_SERVICE" />
39 </application> 43 </application>
40 44
41 </manifest> 45 </manifest>
OLDNEW
« no previous file with comments | « no previous file | adblockplussbrowser/res/values/sysstrings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld