forked from joreilly/BikeShare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
32 lines (30 loc) · 1.07 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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:${Versions.kspPlugin}")
classpath("com.rickclephas.kmp:kmp-nativecoroutines-gradle-plugin:${Versions.kmpNativeCoroutinesVersion}")
classpath("io.realm.kotlin:gradle-plugin:${Versions.realm}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://androidx.dev/storage/compose-compiler/repository")
}
}
//allprojects {
// configurations.all {
// resolutionStrategy.dependencySubstitution {
// substitute(module("org.jetbrains.compose.compiler:compiler")).apply {
// using(module("androidx.compose.compiler:compiler:${Versions.composeCompiler}"))
// }
// }
// }
//}