Created
January 27, 2015 17:18
-
-
Save artem-zinnatullin/1ae20aa0359c989a0f40 to your computer and use it in GitHub Desktop.
App's build.gradle for Kotlin
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
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