This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
96 lines (93 loc) · 2.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
buildscript {
ext.kotlinVersion = '1.4.10'
ext.androidGradlePluginVersion = '3.0.1'
ext.gradleVersion =
repositories {
mavenCentral()
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://dl.bintray.com/web3j/maven" }
}
dependencies {
classpath "gradle.plugin.io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.0.0.RC8"
classpath 'com.android.tools.build:gradle:4.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath 'com.deploygate:gradle:2.2.0'
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.11.0, 0.99.99]'
classpath 'com.google.gms:google-services:4.3.4'
}
repositories {
google()
}
}
allprojects {
repositories {
mavenCentral()
google()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://plugins.gradle.org/m2/" }
maven { url "https://dl.bintray.com/web3j/maven" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
buildToolsVersion = '29.0.2'
supportLibVersion = '29.0.2'
picasso_version = '2.71828'
roomVersion = '1.1.1'
glide_version = '4.8.0'
imagezoom_version = '1.0.4'
hyperionVersion = '0.9.27'
hawkVersion = '2.0.1'
fabVersion = '1.6.4'
glideVersion = '4.9.0'
archLifeCycleVersion = '1.1.1'
daggerVersion = '2.24'
multidexVersion = '1.0.3'
retrofitVersion = '2.5.0'
gsonVersion = '2.8.6'
loggingIntercepterVersion = '4.3.1'
rxJavaVersion = '2.2.19'
rxAndroidVersion = '2.1.1'
constraintLayoutVersion = '1.1.3'
circleImageViewVersion = '2.2.0'
timberVersion = '4.7.1'
leakCanaryVersion = '2.4'
junitVersion = '4.13'
mockitoVersion = '3.3.3'
roboletricVersion = '4.3.1'
testRunnerVersion = '1.0.2'
espressoVerion = '3.0.2'
mockWebserverVersion = '3.11.0'
materialDialogVersion = '0.9.6.0'
indicatorVersion = '2.1.0'
calligraphy3Version = '3.1.1'
viewpumpVersion = '2.0.3'
web3jVersion = '4.6.0-android'
gethVersion = '1.7.3'
bitcoinjVersion = '0.15.1'
tokenCoreVersion = 'v0.1'
rxPermissionVersion = '0.10.2'
filePickerVersion = '2.1.5'
zxingVersion = '3.6.0'
rxBindingVersion = '3.0.0-alpha2'
rxKotlinVersion = '2.3.0'
ahbottomnavigationVersion = '2.3.4'
work = "2.0.1"
swipeLayoutVersion = '1.2.0@aar'
priorityJobVersion = '2.0.1'
debugDbVersion = '1.0.6'
expandableLayoutVersion = '2.9.2'
statusBarUtilVersion = '1.5.1'
androidMPChartVersion = 'v3.1.0'
androidTinkVersion = '1.4.0'
threeTenAbpVersion = '1.2.0'
}