-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
build.gradle.kts
29 lines (26 loc) · 955 Bytes
/
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
buildscript {
repositories {
maven("https://repo.maven.apache.org/maven2/")
google() // Direct URL is not supported by F-Droid
}
dependencies {
// https://developer.android.com/build/releases/gradle-plugin
classpath("com.android.tools.build:gradle:8.3.2")
// https://github.com/JetBrains/kotlin/releases
classpath(kotlin("gradle-plugin", version = "1.9.23"))
// https://developer.android.com/jetpack/androidx/releases/navigation
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.7")
// https://github.com/cashapp/sqldelight/releases
classpath("com.squareup.sqldelight:gradle-plugin:1.5.5")
}
}
allprojects {
repositories {
maven("https://repo.maven.apache.org/maven2/")
google() // Direct URL is not supported by F-Droid
maven("https://jitpack.io")
}
}
task("clean") {
delete(rootProject.buildDir)
}