-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (41 loc) · 1.11 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
/*
* Copyright (c) 2019. Bernard Bou <1313ou@gmail.com>
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
google()
maven { url System.getenv('HOME') + "/.m2/repository/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.2'
classpath 'com.google.gms:google-services:4.4.0'
}
}
allprojects {
repositories {
mavenCentral()
google()
maven { url System.getenv('HOME') + "/.m2/repository/" }
}
ext {
versionCode = 1
versionName = '0.1'
minSdkVersion = 14
targetSdkVersion = 33
compileSdk = 34
treebolicVersion = '4.1-8'
multiDexEnabled = true
desugaringVersion = "2.0.4"
multiDexVersion = "2.0.1"
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile).tap {
configureEach {
options.compilerArgs << "-Xlint:deprecation"
options.compilerArgs << "-Xlint:unchecked"
}
}
}
}