-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
54 lines (49 loc) · 1.37 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.41"
classpath 'com.google.gms:google-services:4.2.0'
classpath 'io.fabric.tools:gradle:1.25.4'
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta04'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com/' }
maven { url "https://jitpack.io" }
maven { url 'https://maven.fabric.io/public' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
// version code and version name
versionCode = 37
versionName = "0.37"
// Sdk and tools
minSdkVersion = 21
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '28.0.2'
// App dependencies
supportLibVersion = '28.0.0'
androidX = '1.0.0-rc01'
junitVersion = '4.12'
mockitoVersion = '1.10.19'
espressoVersion = '3.0.2'
playServicesVersion = '15.0.1'
androidArchVersion = '1.1.1'
firebaseVersion = '16.0.1'
adsVersion = '17.2.0'
}