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

Unified Diff: libadblockplus-android-webviewapp/build.gradle

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
« no previous file with comments | « libadblockplus-android-webviewapp/AndroidManifest.xml ('k') | libadblockplus-android-webviewapp/build.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus-android-webviewapp/build.gradle
diff --git a/libadblockplus-android-webviewapp/build.gradle b/libadblockplus-android-webviewapp/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..75cc1ea107c8bb16cf383fec72fb19d75831054a
--- /dev/null
+++ b/libadblockplus-android-webviewapp/build.gradle
@@ -0,0 +1,45 @@
+apply plugin: 'com.android.application'
+
+allprojects {
+ repositories {
+ mavenLocal()
+ mavenCentral()
+ }
+}
+
+repositories {
+ mavenLocal()
+ mavenCentral()
+}
+
+android {
+ compileSdkVersion 21
+ buildToolsVersion "24.0.1"
+
+ defaultConfig {
+ applicationId "org.adblockplus.libadblockplus.android.webviewapp"
+ minSdkVersion 17
+ targetSdkVersion 21
+ versionCode 1
+ versionName "1.0"
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ resources.srcDirs = ['src']
+ res.srcDirs = ['res']
+
+ jni {
+ dependencies {
+ project ":libadblockplus-android"
+ }
+ }
+ }
+ }
+}
+
+dependencies {
+ compile project(':libadblockplus-android-webview')
+}
« no previous file with comments | « libadblockplus-android-webviewapp/AndroidManifest.xml ('k') | libadblockplus-android-webviewapp/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld