All the examples that aren't part of the Android RSS Reader.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
group 'co.starcarr' version '1.0-SNAPSHOT'
buildscript { ext.kotlin_version = '1.2.50' ext.coroutines_version = '0.23.3'
repositories { mavenCentral() } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }
apply plugin: 'kotlin'
repositories { mavenCentral() }
dependencies { compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" compile "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
// Test libraries
testCompile "org.jetbrains.kotlin:kotlin-test" testCompile "org.jetbrains.kotlin:kotlin-test-junit"
}
compileKotlin { kotlinOptions.jvmTarget = "1.8" } compileTestKotlin { kotlinOptions.jvmTarget = "1.8" } kotlin { experimental { coroutines "enable" } }
|