Last active
November 29, 2018 09:59
-
-
Save viteinfinite/85ba3f2bfb2b0e322e50a382e775787e to your computer and use it in GitHub Desktop.
Understanding The Basics of Multiplatform Projects in Kotlin 1.3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kotlin { | |
// ... your definitions here | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment