-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle
27 lines (23 loc) · 991 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
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.4"
classpath "com.google.gms:google-services:${BuildPluginsVersion.FIREBASE_GMS}"
classpath "com.google.firebase:firebase-crashlytics-gradle:${BuildPluginsVersion.FIREBASE_CRASHLYTICS}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}"
classpath "gradle.plugin.com.onesignal:onesignal-gradle-plugin:${BuildPluginsVersion.ONESIGNAL}"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:${BuildPluginsVersion.DETEKT}"
classpath "com.google.dagger:hilt-android-gradle-plugin:${Versions.DAGGER_HILT}"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.NAVIGATION}"
}
}
subprojects {
apply from: "../buildscripts/detekt.gradle"
}
task clean(type: Delete) {
delete rootProject.buildDir
}