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

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

Issue 29727587: Issue 6500 - Update libadblockplus dependency to revision hg:05a7fb3c0c61 (Closed)
Left Patch Set: Created March 19, 2018, 2 p.m.
Right Patch Set: fixed double increased numbers Created March 20, 2018, 12:57 p.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 | « dependencies ('k') | libadblockplus-android-webviewapp/build.gradle » ('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.library' 1 apply plugin: 'com.android.library'
2 2
3 android { 3 android {
4 compileSdkVersion 21 4 compileSdkVersion 21
5 buildToolsVersion "25.0.0" 5 buildToolsVersion "25.0.0"
6 6
7 defaultConfig { 7 defaultConfig {
8 minSdkVersion 21 8 minSdkVersion 21
9 targetSdkVersion 21 9 targetSdkVersion 21
10 versionCode 6 10 versionCode 5
11 versionName "2.3" 11 versionName "2.2"
diegocarloslima 2018/03/20 12:53:53 why are we bumping 2 versions here?
anton 2018/03/20 12:56:03 no, that was unintentionally. to be fixed
12 } 12 }
13 13
14 sourceSets { 14 sourceSets {
15 main { 15 main {
16 manifest.srcFile 'AndroidManifest.xml' 16 manifest.srcFile 'AndroidManifest.xml'
17 java.srcDirs = ['src'] 17 java.srcDirs = ['src']
18 resources.srcDirs = ['src'] 18 resources.srcDirs = ['src']
19 res.srcDirs = ['res'] 19 res.srcDirs = ['res']
20 assets.srcDirs = ['assets'] 20 assets.srcDirs = ['assets']
21 21
22 jni { 22 jni {
23 dependencies { 23 dependencies {
24 project(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug") 24 project(path: ":libadblockplus-android", configuration: getAbiFlavor() + "Debug")
25 } 25 }
26 } 26 }
27 } 27 }
28 } 28 }
29 } 29 }
30 30
31 dependencies { 31 dependencies {
32 debugCompile project("path": ':libadblockplus-android', "configuration": getAb iFlavor() + "Debug") 32 debugCompile project("path": ':libadblockplus-android', "configuration": getAb iFlavor() + "Debug")
33 releaseCompile project("path": ':libadblockplus-android', "configuration": get AbiFlavor() + "Release") 33 releaseCompile project("path": ':libadblockplus-android', "configuration": get AbiFlavor() + "Release")
34 } 34 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld