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

Delta Between Two Patch Sets: libadblockplus-android-webview/build.gradle

Issue 29351744: Issue 4399 - Add WebView inheritor with ad blocking (Closed)
Left Patch Set: added current url as referer for main frame Created Oct. 6, 2016, 1:28 p.m.
Right Patch Set: changed packages, now using AdblockEngine (original ABPEngine), improved demo app Created Oct. 25, 2016, 11:20 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « libadblockplus-android-webview/assets/inject.js ('k') | libadblockplus-android-webview/build.xml » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 apply plugin: 'com.android.model.library' 1 apply plugin: 'com.android.library'
2 2
3 model { 3 android {
4 compileSdkVersion 21
5 buildToolsVersion "24.0.1"
4 6
5 android { 7 defaultConfig {
6 compileSdkVersion 21 8 minSdkVersion 17
7 buildToolsVersion "22.0.1" 9 targetSdkVersion 21
10 versionCode 1
11 versionName "1.0"
12 }
8 13
9 defaultConfig { 14 sourceSets {
10 minSdkVersion.apiLevel 17 15 main {
11 targetSdkVersion.apiLevel 21 16 manifest.srcFile 'AndroidManifest.xml'
12 versionCode 1 17 java.srcDirs = ['src']
13 versionName "1.0" 18 resources.srcDirs = ['src']
14 } 19 res.srcDirs = ['res']
20 assets.srcDirs = ['assets']
15 21
16 sources { 22 jni {
17 main { 23 dependencies {
18 manifest { 24 project ":libadblockplus-android"
19 source {
20 srcDir '.'
21 include 'AndroidManifest.xml'
22 }
23 }
24 java { source { srcDirs = ['src'] } }
25 resources { source { srcDirs = ['src'] } }
26 res { source { srcDirs = ['res'] } }
27 assets { source { srcDirs = ['assets'] } }
28
29 jni {
30 dependencies {
31 project ":libadblockplus-android"
32 }
33 } 25 }
34 } 26 }
35 } 27 }
36 } 28 }
37 } 29 }
38 30
39 dependencies { 31 dependencies {
40 compile project(':libadblockplus-android') 32 compile project(':libadblockplus-android')
41 } 33 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld