| 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' |