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

Side by Side Diff: libadblockplus-android-webviewapp/AndroidManifest.xml

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: Created Sept. 8, 2016, 12:52 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
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.adblockplus.libadblockplus.webviewapp"
4 android:versionCode="1"
5 android:versionName="1.0">
6
7 <uses-sdk android:minSdkVersion="17"/>
8
9 <application
10 android:icon="@drawable/icon"
11 android:label="@string/app_name">
12
13 <!-- main -->
14 <activity android:name=".MainActivity"
15 android:label="@string/app_name"
16 android:launchMode="singleTop">
17 <intent-filter>
18 <action android:name="android.intent.action.MAIN" />
19 <category android:name="android.intent.category.LAUNCHER" />
20 </intent-filter>
21 </activity>
22 </application>
23
24 <uses-permission android:name="android.permission.INTERNET"/>
25
26 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld