-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
31 lines (26 loc) · 1.16 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.1.2' apply false
id 'com.android.library' version '7.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.20' apply false
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.0' apply false
id 'com.google.dagger.hilt.android' version '2.41' apply false
id 'androidx.navigation.safeargs.kotlin' version '2.4.1' apply false
id 'com.google.gms.google-services' version '4.3.10' apply false
id 'com.google.firebase.crashlytics' version '2.8.1' apply false
id "org.jlleitschuh.gradle.ktlint" version "10.2.1"
}
task clean(type: Delete) {
delete rootProject.buildDir
}
//Uncomment to trigger git-hooks
/*
task installGitHook(type: Copy) {
from new File(rootProject.rootDir, 'scripts/pre-commit')
into { new File(rootProject.rootDir, '.git/hooks') }
from new File(rootProject.rootDir, 'scripts/pre-push')
into { new File(rootProject.rootDir, '.git/hooks') }
fileMode 0775
}
tasks.getByPath(':app:preBuild').dependsOn installGitHook
*/