Skip to content

Instantly share code, notes, and snippets.

@viteinfinite
Last active November 29, 2018 09:59
Show Gist options
  • Save viteinfinite/85ba3f2bfb2b0e322e50a382e775787e to your computer and use it in GitHub Desktop.
Save viteinfinite/85ba3f2bfb2b0e322e50a382e775787e to your computer and use it in GitHub Desktop.
Understanding The Basics of Multiplatform Projects in Kotlin 1.3
buildscript {
ext.kotlin_version = '1.3.0'
repositories {
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
kotlin {
// ... your definitions here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment