-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (28 loc) · 735 Bytes
/
build.gradle
File metadata and controls
32 lines (28 loc) · 735 Bytes
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
buildscript {
ext {
compose_version = '_'
}
dependencies {
classpath "io.nlopez.compose.rules:ktlint:_"
classpath CashApp.licenseeGradlePlugin
}
}
plugins {
id 'com.android.application' apply false
id 'com.android.library' apply false
id 'org.jetbrains.kotlin.android' apply false
id 'org.jmailen.kotlinter' apply false
id 'de.mannodermaus.android-junit5' apply false
id 'app.cash.licensee' apply false
}
tasks.register('clean') {
delete rootProject.buildDir
}
if (hasProperty('buildScan')) {
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
}