-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbuild.gradle
More file actions
36 lines (30 loc) · 807 Bytes
/
build.gradle
File metadata and controls
36 lines (30 loc) · 807 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
buildscript {
ext {
compileSdkVersion = 28
targetSdkVersion = 28
kotlin_version = '1.3.31'
x_appcompat_version = '1.0.2'
x_annotation_version = '1.1.0'
rxjava2_version = '2.2.10'
rxandroid_version = '2.1.1'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0-beta04'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4" //1.7.2
classpath "com.github.dcendents:android-maven-gradle-plugin:2.1" //1.4.1
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}