-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
29 lines (27 loc) · 1.13 KB
/
Copy pathbuild.gradle
File metadata and controls
29 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.7.10"
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.google.gms:google-services:4.3.13'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.1"
}
}
plugins {
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
id "org.jetbrains.kotlin.kapt" version "$kotlin_version" apply false
id 'org.jetbrains.kotlin.jvm' version "$kotlin_version" apply false
id 'com.google.devtools.ksp' version '1.7.10-1.0.6' apply false
id 'com.android.library' version '7.3.1' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}