You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
589 B
26 lines
589 B
buildscript { |
|
ext.kotlin_version = '1.1.1' |
|
repositories { |
|
jcenter() |
|
} |
|
dependencies { |
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" |
|
classpath 'com.android.tools.build:gradle:2.3.1' |
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' |
|
} |
|
} |
|
apply plugin: 'kotlin' |
|
|
|
allprojects { |
|
repositories { |
|
jcenter() |
|
mavenLocal() |
|
maven { url "https://jitpack.io" } |
|
} |
|
} |
|
repositories { |
|
mavenCentral() |
|
} |
|
dependencies { |
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version" |
|
}
|
|
|