Skip to content

Instantly share code, notes, and snippets.

@manijshrestha
Created October 14, 2018 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manijshrestha/e8bc07a9be228974ddaa72142c590c5b to your computer and use it in GitHub Desktop.
Save manijshrestha/e8bc07a9be228974ddaa72142c590c5b to your computer and use it in GitHub Desktop.
kotlin multi platform main build.gradle
buildscript {
ext.kotlin_version = '1.3.0-rc-80'
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment