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

Delta Between Two Patch Sets: libadblockplus-android-webviewapp/AndroidManifest.xml

Issue 29677555: Issue 6299 - Avoid main thread lock on URL loading (Closed)
Left Patch Set: Created Jan. 23, 2018, 6:12 a.m.
Right Patch Set: added "final" for domain Created Jan. 23, 2018, 10:33 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
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.libadblockplus.android.webviewapp" 3 package="org.adblockplus.libadblockplus.android.webviewapp"
4 android:versionCode="4" 4 android:versionCode="5"
5 android:versionName="2.0"> 5 android:versionName="2.1">
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="21" 8 android:minSdkVersion="21"
9 android:targetSdkVersion="21"/> 9 android:targetSdkVersion="21"/>
10 10
11 <uses-permission android:name="android.permission.INTERNET"/> 11 <uses-permission android:name="android.permission.INTERNET"/>
12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 13 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
14 14
15 <application 15 <application
(...skipping 15 matching lines...) Expand all
31 </activity> 31 </activity>
32 32
33 <!-- settings --> 33 <!-- settings -->
34 <activity 34 <activity
35 android:name=".SettingsActivity" 35 android:name=".SettingsActivity"
36 android:label="@string/settings_name" 36 android:label="@string/settings_name"
37 android:theme="@android:style/Theme.DeviceDefault.Light"/> 37 android:theme="@android:style/Theme.DeviceDefault.Light"/>
38 </application> 38 </application>
39 39
40 </manifest> 40 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld