-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdependencies.gradle
78 lines (64 loc) · 2.4 KB
/
dependencies.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
ext {
compileSdkVer = 28
minSdkVer = 14
targetSdkVer = 28
versionCode = 1
versionName = '3.0.0'
// Kotlin
kotlinVer = '1.4.10'
androidKtxVer = '1.0.2'
// Support library
constraintLayout = '1.1.3'
// AndroidX
xAppCompatVer = '1.2.0'
xLifecycleVer = '2.2.0'
xFragmentVer = '1.1.0-rc04'
xRulesVer = '1.1.0-rc04'
xRunnerVer = '1.1.0-rc04'
xTestVer = '1.3.0'
xExtVer = '1.1.2'
// Reactive Extensions
rxJava2Ver = '2.2.20'
rxAndroid2Ver = '2.1.1'
// Billing Client
billingClientVer = '3.0.1'
// Developer-related
timberVer = '4.7.1'
// Unit-tests
jUnitVer = '4.13.1'
mockitoVer = '3.5.15'
mockitoKotlinVer = '2.1.0'
jacocoVer = '0.1.2'
assertJVer = '3.9.1'
// Dependencies
presentationDependencies = [
appCompat : "androidx.appcompat:appcompat:$xAppCompatVer",
fragment : "androidx.fragment:fragment:$xFragmentVer",
lifecycleRuntime : "androidx.lifecycle:lifecycle-runtime:$xLifecycleVer",
lifecycleCompiler : "androidx.lifecycle:lifecycle-compiler:$xLifecycleVer",
lifecycleExtensions: "androidx.lifecycle:lifecycle-extensions:$xLifecycleVer"
]
kotlinDependencies = [
kotlinStdLib : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVer",
kotlinReflect: "org.jetbrains.kotlin:kotlin-reflect:$kotlinVer",
androidKtx : "androidx.core:core-ktx:$androidKtxVer"
]
developmentDependencies = [
timber: "com.jakewharton.timber:timber:$timberVer",
]
dataDependencies = [
rxJava : "io.reactivex.rxjava2:rxjava:$rxJava2Ver",
rxAndroid : "io.reactivex.rxjava2:rxandroid:$rxAndroid2Ver",
billingClient: "com.android.billingclient:billing:$billingClientVer"
]
testDependencies = [
jUnit : "junit:junit:$jUnitVer",
mockito : "org.mockito:mockito-core:$mockitoVer",
mockitoKotlin: "com.nhaarman.mockitokotlin2:mockito-kotlin:$mockitoKotlinVer",
assertJ : "org.assertj:assertj-core:$assertJVer",
mockitoInline: "org.mockito:mockito-inline:$mockitoVer",
runner : "androidx.test:runner:$xTestVer",
rules : "androidx.test:rules:$xTestVer",
ext : "androidx.test.ext:junit:$xExtVer"
]
}