forked from yogeshpaliyal/KeyPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
65 lines (55 loc) · 2.21 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath ("com.android.tools.build:gradle:8.1.4")
classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath ("com.google.gms:google-services:4.4.0")
classpath ("com.google.dagger:hilt-android-gradle-plugin:${Versions.hilt}")
classpath ("com.spotify.ruler:ruler-gradle-plugin:1.4.0")
classpath ("com.gradle:gradle-enterprise-gradle-plugin:3.13.2")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle.kts files
}
}
plugins {
kotlin("multiplatform") version("1.8.0") apply false
kotlin("android") version("1.8.0") apply false
id("com.android.application") version("7.4.2") apply false
id("com.android.library") version("7.4.2") apply false
id("org.jetbrains.compose") version "1.5.3" apply false
id ("com.diffplug.spotless") version("6.18.0")
id("org.jetbrains.kotlin.kapt") version(Versions.kotlin)
id("com.google.dagger.hilt.android") version ("2.48.1") apply false
id("com.gradle.enterprise") version("3.15.1") apply false
id("org.jetbrains.kotlin.plugin.serialization") version (Versions.kotlin)
}
subprojects {
repositories {
google()
maven("https://jitpack.io")
}
apply(plugin = "com.diffplug.spotless")
spotless {
kotlin {
target("**/*.kt")
targetExclude("$buildDir/**/*.kt")
targetExclude("bin/**/*.kt")
val map = HashMap<String, String>()
ktlint("0.46.0").userData(map)
// licenseHeaderFile rootProject.file('spotless/copyright.kt')
}
}
}
//tasks.register("clean", Delete::class) {
// delete(rootProject.buildDir)
//}
// pre build gradle hook for git init on evey gradle build to reduce developer friction.
val installGitHook by tasks.register<Exec>("installGitHook") {
workingDir = rootProject.rootDir
commandLine = listOf("sh", "./githooks/git-init.sh")
}
tasks.getByPath("app:assemble").dependsOn(installGitHook)