-
Notifications
You must be signed in to change notification settings - Fork 101
/
build.gradle.kts
34 lines (30 loc) · 1.09 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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.4.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}")
if (System.getProperty("includeAndroid")?.toBoolean() == true) {
// Plugins for the legacy android app
// Argument classes generation plugin for the androidx navigation component
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.AndroidLegacy.safeArgs}")
}
// Firebase cloud messaging plugin
classpath("com.google.gms:google-services:${Versions.fcmPlugin}")
}
}
allprojects {
repositories {
mavenLocal()
google()
mavenCentral()
maven("https://oss.sonatype.org/content/repositories/snapshots")
}
}
val clean by tasks.creating(Delete::class) {
delete(rootProject.buildDir)
}