-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
33 lines (30 loc) · 1.06 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
buildscript {
repositories {
google()
jcenter()
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-eap") }
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.0-alpha07")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version")
classpath("co.touchlab:kotlinnativecocoapods:0.11")
}
}
plugins {
kotlin("multiplatform") version kotlin_version apply false
}
subprojects {
repositories {
google()
jcenter()
maven(url = "https://kotlin.bintray.com/kotlinx/")
//maven(url = "https://dl.bintray.com/ekito/koin") TODO: revert when Koin is available
maven(url = "https://dl.bintray.com/touchlabpublic/kotlin")
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-eap") }
maven { url = uri("https://kotlin.bintray.com/kotlin-js-wrappers/") }
maven {
url = uri("https://dl.bintray.com/kodein-framework/kodein-dev")
}
}
}