forked from ACINQ/phoenix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
32 lines (28 loc) · 1 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:7.2.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("com.squareup.sqldelight:gradle-plugin:${Versions.sqlDelight}")
// 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)
}