-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (28 loc) · 1.01 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
import com.andresestevez.soreh.buildsrc.Libs
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath Libs.androidGradlePlugin
classpath Libs.Kotlin.gradlePlugin
classpath Libs.Hilt.gradlePlugin
}
}
plugins {
// Add the dependency for the Google services Gradle plugin
id("com.google.gms.google-services") version "4.4.0" apply false
// Add the dependency for the Crashlytics Gradle plugin
id("com.google.firebase.crashlytics") version "2.9.9" apply false
id("androidx.baselineprofile") version "1.2.0" apply false
id 'com.android.test' version '8.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.20' apply false
id 'com.android.application' version '8.1.2' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}