-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
46 lines (41 loc) · 906 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
45
46
apply from: 'dependencies.gradle'
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.10"
// classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
}
}
allprojects {
ext {
// Android config
androidBuildToolsVersion = '28.0.3'
androidMinSdkVersion = 26
androidTargetSdkVersion = 29
androidCompileSdkVersion = 29
androidApplicationId = 'com.ricamgar.notify'
androidVersionCode = 5
androidVersionName = '1.2.0'
}
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com'
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}