Skip to content

Instantly share code, notes, and snippets.

@tevjef
Created May 5, 2019 21:39
Show Gist options
  • Save tevjef/93448a1ec88277066d6d999a93c4b7a2 to your computer and use it in GitHub Desktop.
Save tevjef/93448a1ec88277066d6d999a93c4b7a2 to your computer and use it in GitHub Desktop.
How to use a dev version of kotlin
buildscript {
ext.kotlin_version = '1.3.40-dev-2527'
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
maven { url 'https://dl.bintray.com/kotlin/kotlin-dev' }
google()
jcenter()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment