-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
37 lines (28 loc) · 971 Bytes
/
build.gradle.kts
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
37
import org.apache.tools.ant.taskdefs.condition.Os
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
`kotlin-dsl`
}
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven("https://plugins.gradle.org/m2/")
}
dependencies {
classpath("com.google.gms:google-services:4.3.3")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.5.2")
classpath ("dev.icerock.moko:resources-generator:0.22.3")
}
}
tasks.register<Copy>("installGitHook") {
var suffix = "linux"
if (Os.isFamily(Os.FAMILY_WINDOWS))
suffix = "windows"
from(File(rootProject.rootDir, "scripts/pre-commit-$suffix"))
into { File(rootProject.rootDir, ".git/hooks") }
rename("pre-commit-$suffix", "pre-commit")
fileMode = 0b111111111
}
tasks.getByPath(":app:preBuild").dependsOn(tasks.named("installGitHook"))