wgtunnel/build.gradle.kts

21 lines
768 B
Plaintext
Raw Normal View History

2023-05-24 01:33:20 -04:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
val objectBoxVersion by extra("3.5.1")
val hiltVersion by extra("2.47")
2023-05-24 01:33:20 -04:00
val accompanistVersion by extra("0.31.2-alpha")
dependencies {
classpath("io.objectbox:objectbox-gradle-plugin:$objectBoxVersion")
classpath("com.google.gms:google-services:4.3.15")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.9.7")
2023-05-24 01:33:20 -04:00
}
}
plugins {
id("com.android.application") version "8.2.0-beta01" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
2023-05-24 01:33:20 -04:00
id("com.google.dagger.hilt.android") version "2.44" apply false
kotlin("plugin.serialization") version "1.8.22" apply false
2023-05-24 01:33:20 -04:00
}