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 goBack/goForward support, added 'setAAenabled' setting, modified app for testing Created Sept. 26, 2016, 12:59 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:
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
(no file at all)
1 apply plugin: 'com.android.library'
2
3 android {
4 compileSdkVersion 21
5 buildToolsVersion "24.0.1"
6
7 defaultConfig {
8 minSdkVersion 17
9 targetSdkVersion 21
10 versionCode 1
11 versionName "1.0"
12 }
13
14 sourceSets {
15 main {
16 manifest.srcFile 'AndroidManifest.xml'
17 java.srcDirs = ['src']
18 resources.srcDirs = ['src']
19 res.srcDirs = ['res']
20 assets.srcDirs = ['assets']
21
22 jni {
23 dependencies {
24 project ":libadblockplus-android"
25 }
26 }
27 }
28 }
29 }
30
31 dependencies {
32 compile project(':libadblockplus-android')
33 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld