isolaatti-android/build.gradle

20 lines
774 B
Groovy
Raw Permalink 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"
2023-07-15 20:58:57 -06:00
}
}
2023-02-06 13:44:27 -06:00
plugins {
2024-01-04 16:20:38 -06:00
id 'com.android.application' version '8.2.1' apply false
id 'com.android.library' version '8.2.1' apply false
2023-02-06 13:44:27 -06:00
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
2023-07-27 22:49:06 -06:00
id 'com.google.dagger.hilt.android' version '2.47' apply false
2023-02-06 13:44:27 -06:00
}