-
Notifications
You must be signed in to change notification settings - Fork 38
/
build.gradle
54 lines (47 loc) · 1.61 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
47
48
49
50
51
52
53
54
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'buildsystem/constants.gradle'
apply from: 'buildsystem/helpers.gradle'
apply from: 'buildsystem/versions.gradle'
repositories {
google()
jcenter()
maven { url 'https://www.jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.android_tools"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.github.gnosis.bivrost-kotlin:bivrost-gradle-plugin:$versions.bivrost"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$versions.androidx_navigation"
classpath "com.google.gms:google-services:$versions.google_services"
classpath "com.google.firebase:firebase-crashlytics-gradle:$versions.firebase_crashlytics_gradle"
classpath "com.google.firebase:firebase-appdistribution-gradle:$versions.firebase_app_distribution_gradle"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://www.jitpack.io' }
}
}
subprojects {
afterEvaluate { project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 34
defaultConfig {
minSdkVersion 21
targetSdkVersion 34
}
lintOptions {
abortOnError false
}
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}