22 lines
911 B
Groovy
22 lines
911 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
google()
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
dependencies {
|
|
def nav_version = "2.6.0"
|
|
classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1"
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
|
}
|
|
}
|
|
plugins {
|
|
id 'com.android.application' version '8.2.2' apply false
|
|
id 'com.android.library' version '8.2.2' apply false
|
|
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
|
|
id 'com.google.dagger.hilt.android' version '2.47' apply false
|
|
id 'com.google.gms.google-services' version '4.4.0' apply false
|
|
id 'com.google.firebase.crashlytics' version '2.9.9' apply false
|
|
} |