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 April 26, 2018, 12:45 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
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" />
anton 2018/05/03 07:23:20 should not we add `android:exported="false"` here?
jens 2018/05/03 07:44:37 The default value of android:exported is false if
anton 2018/05/03 07:56:26 Acknowledged.
39 </application> 43 </application>
40 44
41 </manifest> 45 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld