26 lines
952 B
Groovy
26 lines
952 B
Groovy
|
|
|
||
|
|
buildscript {
|
||
|
|
ext {
|
||
|
|
kotlin_version = '1.8.10'
|
||
|
|
}
|
||
|
|
dependencies {
|
||
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.3"
|
||
|
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
||
|
|
classpath 'com.google.gms:google-services:4.3.15'
|
||
|
|
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
|
||
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
|
}
|
||
|
|
repositories {
|
||
|
|
mavenCentral()
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||
|
|
plugins {
|
||
|
|
id 'com.android.application' version '7.3.1' apply false
|
||
|
|
id 'com.android.library' version '7.3.1' apply false
|
||
|
|
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
|
||
|
|
|
||
|
|
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
|
||
|
|
id 'org.jetbrains.kotlin.jvm' version '1.8.10' apply false
|
||
|
|
}
|
||
|
|
|