forked from firezone/firezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
27 lines (24 loc) · 970 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://plugins.gradle.org/m2/")
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.7.6")
}
}
plugins {
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
id("com.android.application") version "8.2.1" apply false
id("com.google.firebase.appdistribution") version "4.0.1" apply false
id("com.google.dagger.hilt.android") version "2.50" apply false
id("com.google.gms.google-services") version "4.4.0" apply false
id("org.mozilla.rust-android-gradle.rust-android") version "0.9.3" apply false
id("com.google.firebase.crashlytics") version "2.9.9" apply false
}
tasks.register("clean", Delete::class) {
delete(layout.buildDirectory)
}