isolaatti-android/build.gradle

25 lines
1.1 KiB
Groovy
Raw Normal View History

2023-02-06 13:44:27 -06:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2023-07-15 20:58:57 -06:00
buildscript {
2023-07-27 22:49:06 -06:00
repositories {
gradlePluginPortal()
google()
mavenCentral()
2024-01-13 23:12:31 -06:00
maven { url 'https://jitpack.io' }
2023-07-27 22:49:06 -06:00
}
2023-07-15 20:58:57 -06:00
dependencies {
2023-07-31 00:25:25 -06:00
def nav_version = "2.6.0"
2023-07-15 20:58:57 -06:00
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
2023-07-31 00:25:25 -06:00
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6'
2023-07-15 20:58:57 -06:00
}
}
2023-02-06 13:44:27 -06:00
plugins {
2025-03-15 17:31:56 -06:00
id 'com.android.application' version '8.8.2' apply false
id 'com.android.library' version '8.8.2' apply false
2024-12-24 10:32:12 -06:00
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false
id 'com.google.dagger.hilt.android' version '2.53.1' apply false
id 'com.google.gms.google-services' version '4.4.2' apply false
id 'com.google.firebase.crashlytics' version '3.0.2' apply false
id 'org.jetbrains.kotlin.kapt' version '2.1.0' apply false
id 'com.google.devtools.ksp' version '2.1.0-1.0.29' apply false
2023-02-06 13:44:27 -06:00
}