-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
47 lines (41 loc) · 1.39 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'versions.gradle'
ext.kotlin_version = "1.9.0"
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath "com.android.tools.build:gradle:7.2.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath("org.jetbrains.kotlinx:kover:0.5.1")
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.21.0"
classpath "com.bugsnag:bugsnag-android-gradle-plugin:$versions.bugsnag"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.7.10"
classpath deps.google_play_services
classpath deps.android_gradle_plugin
classpath deps.kotlin.plugin
classpath deps.hilt.plugin
}
}
apply plugin: 'kover'
def githubProperties = new Properties()
githubProperties.load(new FileInputStream(rootProject.file("github.properties")))
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://jitpack.io" }
}
configurations.all {
resolutionStrategy.force 'org.objenesis:objenesis:3.3'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}