-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 785 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 785 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
33
34
35
36
37
38
39
40
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
}
}
subprojects {
repositories {
google()
jcenter()
}
plugins.withType(com.android.build.gradle.BasePlugin) {
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 14
targetSdkVersion 29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
wrapper {
gradleVersion '5.5.1'
distributionType Wrapper.DistributionType.ALL
}