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

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

Issue 29361445: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: renamings, updated README Created Dec. 19, 2016, 3:04 p.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-webview/build.gradle
diff --git a/libadblockplus-android-webview/build.gradle b/libadblockplus-android-webview/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..15534a41131b6acbef60d39cc69fb33e2be3b95a
--- /dev/null
+++ b/libadblockplus-android-webview/build.gradle
@@ -0,0 +1,33 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 21
+ buildToolsVersion "24.0.1"
+
+ defaultConfig {
+ minSdkVersion 21
+ targetSdkVersion 21
+ versionCode 1
+ versionName "1.0"
+ }
+
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
+ resources.srcDirs = ['src']
+ res.srcDirs = ['res']
+ assets.srcDirs = ['assets']
+
+ jni {
+ dependencies {
+ project ":libadblockplus-android"
+ }
+ }
+ }
+ }
+}
+
+dependencies {
+ compile project(':libadblockplus-android')
+}

Powered by Google App Engine
This is Rietveld