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

Unified Diff: build.gradle

Issue 29596603: Issue 5981 - Adjust build.gradle to support Kotlin (Closed)
Patch Set: Created Nov. 3, 2017, 10:59 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 | « adblockplussbrowser/build.gradle ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.gradle
===================================================================
--- a/build.gradle
+++ b/build.gradle
@@ -1,20 +1,23 @@
buildscript {
+ ext.kotlin_version = '1.1.51'
anton 2017/11/03 12:00:20 should not it be in the section below where the ot
jens 2017/11/03 12:45:54 Yeah, I wonder why it's not. Looks like Android St
diegocarloslima 2017/11/08 11:37:20 Minor thing, but for the other variables in ext, w
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
+ mavenCentral()
}
}
ext {
minSdkVersion = 21
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.3'
« no previous file with comments | « adblockplussbrowser/build.gradle ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld