forked from AniTrend/anitrend-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
106 lines (91 loc) · 2.73 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
97
98
99
100
101
102
103
104
105
106
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdk = 29
targetSdk = 29
minSdk = 17
versionCode = 10702
versionName = '1.7.0'
butterKnife = '10.2.3'
constraint = '2.0.4'
glide = '4.11.0'
retrofit = '2.6.2'
supportLibrary = '28.0.0'
material = '1.2.1'
androidx = '2.2.0'
objectBox = '2.8.1'
paging = '2.1.0'
pagingKtx = '2.1.0'
fragmentKtx = '1.2.5'
workerKtx = '2.4.0'
ktx = '1.3.2'
navigation = '2.1.0-beta02'
firebase = '18.0.0'
koin = '2.2.1'
kotlinVersion = '1.4.20'
multidex = '2.0.1'
// mockito = '2.18.3'
hemcrest = '2.2'
mockito = '3.6.28'
junit = '4.13.1'
runner = '1.3.0'
espresso = '3.3.0'
mockk = '1.10.2'
flexBox = '2.0.1'
crashlytics = '2.10.1'
coroutinesCore = '1.4.1'
coroutinesAndroid = '1.4.1'
materialDialogs = '0.9.6.0'
gson = '2.8.5'
timber = '4.7.1'
graphql = '0.10.2'
emojify = '1.5.3'
markwon = '4.6.0'
smartTab = '2.0.0'
tapTarget = '3.0.1'
okHttpLogger = '3.12.1'
prettyTime = '4.0.6.Final'
jiaoziVideoPlayer = '7.5.0'
photoView = '2.3.0'
onboarder = '1.0.4'
mpAndroidChart = '3.1.0'
aboutPage = '1.2.5'
materialSearchView = '1.4.15'
progressLayout = '1.0.1'
eventBus = '3.2.0'
alerter = '6.2.1'
stream = '1.2.1'
circularProgressView = '2.5.0'
}
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url "http://objectbox.net/beta-repo/" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// Google Play Services
classpath 'com.google.gms:google-services:4.3.4'
// Crash Analytics
classpath 'io.fabric.tools:gradle:1.31.2'
// Object Box
classpath "io.objectbox:objectbox-gradle-plugin:$objectBox"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "http://objectbox.net/beta-repo/" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}