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

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

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Patch Set: added Maven build configuration files for -webview and -webviewapp modules Created Oct. 5, 2016, 11:19 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-webview/assets/inject.js ('k') | libadblockplus-android-webview/build.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..2df4cb28e3d55c41fc9128d5949ab1f95bdbf9af
--- /dev/null
+++ b/libadblockplus-android-webview/build.gradle
@@ -0,0 +1,41 @@
+apply plugin: 'com.android.model.library'
+
+model {
+
+ android {
+ compileSdkVersion 21
+ buildToolsVersion "22.0.1"
+
+ defaultConfig {
+ minSdkVersion.apiLevel 17
+ targetSdkVersion.apiLevel 21
+ versionCode 1
+ versionName "1.0"
+ }
+
+ sources {
+ main {
+ manifest {
+ source {
+ srcDir '.'
+ include 'AndroidManifest.xml'
+ }
+ }
+ java { source { srcDirs = ['src'] } }
+ resources { source { srcDirs = ['src'] } }
+ res { source { srcDirs = ['res'] } }
+ assets { source { srcDirs = ['assets'] } }
+
+ jni {
+ dependencies {
+ project ":libadblockplus-android"
+ }
+ }
+ }
+ }
+ }
+}
+
+dependencies {
+ compile project(':libadblockplus-android')
+}
« no previous file with comments | « libadblockplus-android-webview/assets/inject.js ('k') | libadblockplus-android-webview/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld