-
Notifications
You must be signed in to change notification settings - Fork 24
/
build.gradle
53 lines (43 loc) · 1.33 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// This library version
ext.LIBRARY_VERSION_CODE = 14
ext.LIBRARY_VERSION_NAME = "0.14.0"
// App information
ext.COMPILE_SDK_VERSION = 28
ext.BUILD_TOOLS_VERSION = "28.0.3"
ext.MIN_SDK_VERSION = 16
ext.TARGET_SDK_VERSION = 28
// Using libraries
// Base libraries
ext.KOTLIN_VERSION = "1.2.71"
ext.EXO_PLAYER_VERSION = "2.9.0"
ext.IMA_VERSION = "3.7.2"
// Others
ext.APP_COMPAT_VERSION = "27.1.1"
ext.PLAY_SERVICE_VERSION = "16.0.0"
ext.KOTTER_KNIFE_VERSION = "0.1.0-SNAPSHOT"
ext.TIMBER_VERSION = "4.3.1@aar"
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
classpath 'com.novoda:bintray-release:0.8.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
// kotterknife snapshots
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}