Skip to content

Instantly share code, notes, and snippets.

@artem-zinnatullin
Created January 27, 2015 17:18
Show Gist options
  • Save artem-zinnatullin/1ae20aa0359c989a0f40 to your computer and use it in GitHub Desktop.
Save artem-zinnatullin/1ae20aa0359c989a0f40 to your computer and use it in GitHub Desktop.
App's build.gradle for Kotlin
apply plugin: 'kotlin-android'
android {
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
}
// NOTICE: dependencies are fixed for build stability
dependencies {
// Kotlin STD Library
compile 'org.jetbrains.kotlin:kotlin-stdlib:0.10.195'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment