-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
34 lines (30 loc) · 965 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.8.0'
}
ext.lifecycle_version = "2.6.1"
ext.coroutines_version = "1.6.1"
ext.firebase_bom_version = "30.5.0"
ext.coroutines_play_version = "1.1.1"
ext.room_version = "2.5.1"
ext.datastore_version = "1.0.0"
ext.avatarview_version = "1.0.4"
repositories {
google() // Google's Maven repository
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.15'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
// Google Services plugin
}
}
plugins {
id 'com.android.application' version '7.4.1' apply false
id 'com.android.library' version '7.4.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}