-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle
44 lines (39 loc) · 886 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
ext.buildConfig = [
"applicationId": "com.haroldadmin.crashyapp",
"compileSdk" : 31,
"minSdk" : 21,
"targetSdk" : 31,
"versionCode" : 1,
"versionName" : "0.0.1"
]
repositories {
mavenCentral()
google()
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath libs.agp
classpath libs.kotlinGradlePlugin
classpath libs.ktlintGradlePlugin
}
}
allprojects {
repositories {
mavenCentral()
google()
}
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
ktlint {
version = "0.43.0"
ignoreFailures = false
disabledRules = ["no-wildcard-imports"]
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}