-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
36 lines (34 loc) · 1.1 KB
/
build.gradle
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
30
31
32
33
34
35
36
buildscript {
ext {
kotlin_version = '1.7.0'
nav_version = "2.5.3"
room_version = '2.4.3'
mvvm_version = '2.5.1'
retrofit_version = '2.9.0'
dagger_version = '2.44.2'
compose_version = '1.3.3'
}
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.4'
classpath 'com.google.firebase:perf-plugin:1.4.2'
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.0' apply false
id 'com.google.secrets_gradle_plugin' version '0.4'
}
task clean(type: Delete) {
delete rootProject.buildDir
}