This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
build.gradle
58 lines (52 loc) · 1.5 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
54
55
56
57
58
buildscript {
ext.kotlinVersion = '1.3.31'
repositories {
jcenter()
google()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlinVersion"
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.27.1'
}
}
allprojects {
repositories {
jcenter()
google()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com" }
}
}
ext {
// Sdk, tools and version
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
minSdkVersion = 21
targetSdkVersion = 28
versionCode = 19
versionName = "1.8.7"
// App dependencies
appcompatVersion = "1.0.2"
materialVersion = "1.1.0-alpha04"
androidxVersion = "1.0.0"
circularAnimVersion = "0.3.4"
dresscodeVersion = "1.0.0"
materialIntroVersion = "1.6"
constraintLayoutVersion = "1.1.3"
firebaseVersion = "16.0.7"
crashlyticsVersion = "2.9.9"
kotterKnifeVersion = "0.1.0-SNAPSHOT"
roomVersion = "2.1.0-alpha02"
rxJavaVersion = '2.2.3'
rxKotlinVersion = "2.2.0"
lifecycleVersion = "1.1.1"
junitVersion = "4.12"
}
task clean(type: Delete) {
delete rootProject.buildDir
}