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

Unified Diff: libadblockplus-android-webviewapp/AndroidManifest.xml

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: libadblockplus-android-webviewapp/AndroidManifest.xml
diff --git a/libadblockplus-android-webviewapp/AndroidManifest.xml b/libadblockplus-android-webviewapp/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..034f759a6c244aef9ff510ed3c65c58909f08889
--- /dev/null
+++ b/libadblockplus-android-webviewapp/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="org.adblockplus.libadblockplus.android.webviewapp"
+ android:versionCode="1"
+ android:versionName="1.0">
+
+ <uses-sdk
+ android:minSdkVersion="17"
+ android:targetSdkVersion="21"/>
+
+ <application
+ android:icon="@drawable/icon"
+ android:label="@string/app_name">
+
+ <!-- main -->
+ <activity android:name=".MainActivity"
+ android:label="@string/app_name"
+ android:launchMode="singleTop">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+ <uses-permission android:name="android.permission.INTERNET"/>
+
+</manifest>

Powered by Google App Engine
This is Rietveld