-
Notifications
You must be signed in to change notification settings - Fork 45
/
build.gradle.kts
38 lines (32 loc) · 1.14 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
34
35
36
37
38
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kmpNativeCoroutines) apply false
alias(libs.plugins.sqlDelight) apply false
}
/*
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("app.cash.sqldelight:gradle-plugin:${Versions.sqlDelight}")
classpath("com.google.gms:google-services:4.3.15")
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:${Versions.kspPlugin}")
classpath("com.rickclephas.kmp:kmp-nativecoroutines-gradle-plugin:${Versions.kmpNativeCoroutines}")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://androidx.dev/storage/compose-compiler/repository")
}
}
*/