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

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

Issue 29677586: Issue 6300 - Remove Maven and Ant support (Closed)
Left Patch Set: Created Jan. 23, 2018, 7:46 a.m.
Right Patch Set: Removed versioning from AndroidManifest.xml Created Jan. 24, 2018, 6 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
« no previous file with change/comment | « libadblockplus-android-webview/project.properties ('k') | libadblockplus-android-webviewapp/build.xml » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
5 android:versionName="2.0">
6 4
7 <uses-sdk 5 <uses-sdk
8 android:minSdkVersion="21" 6 android:minSdkVersion="21"
9 android:targetSdkVersion="21"/> 7 android:targetSdkVersion="21"/>
10 8
11 <uses-permission android:name="android.permission.INTERNET"/> 9 <uses-permission android:name="android.permission.INTERNET"/>
12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 10 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
13 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> 11 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
14 12
15 <application 13 <application
(...skipping 15 matching lines...) Expand all
31 </activity> 29 </activity>
32 30
33 <!-- settings --> 31 <!-- settings -->
34 <activity 32 <activity
35 android:name=".SettingsActivity" 33 android:name=".SettingsActivity"
36 android:label="@string/settings_name" 34 android:label="@string/settings_name"
37 android:theme="@android:style/Theme.DeviceDefault.Light"/> 35 android:theme="@android:style/Theme.DeviceDefault.Light"/>
38 </application> 36 </application>
39 37
40 </manifest> 38 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld