forked from nominalista/expenses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependencies.gradle
69 lines (62 loc) · 3.51 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
ext {
// Kotlin
kotlinVersion = '1.3.50'
// AndroidX
appCompatVersion = '1.0.2'
constraintLayoutVersion = '1.1.3'
coreKtxVersion = '1.1.0-rc03'
lifecycleVersion = '2.0.0'
navigationVersion = '2.0.0'
preferenceVersion = '1.0.0'
recyclerViewVersion = '1.0.0'
roomVersion = '2.1.0'
workVersion = '2.2.0'
// Firebase
firebaseCoreVersion = '17.2.0'
firebaseMessagingVersion = '20.0.0'
// Libraries
coroutinesVersion = '1.3.0'
jxlVersion = '2.6.12'
materialVersion = '1.1.0-alpha10'
rxAndroidVersion = '2.1.1'
rxRelayVersion = '2.1.1'
threeTeenVersion = '1.2.1'
// Testing
jUnitVersion = '4.12'
testCoreVersion = '1.2.0'
testRunnerVersion = '1.2.0'
testRulesVersion = '1.2.0'
appDependencies = [
"appCompat" : "androidx.appcompat:appcompat:${appCompatVersion}",
"constraintLayout" : "androidx.constraintlayout:constraintlayout:${constraintLayoutVersion}",
"coreKtx" : "androidx.core:core-ktx:${coreKtxVersion}",
"coroutinesAndroid" : "org.jetbrains.kotlinx:kotlinx-coroutines-android:${coroutinesVersion}",
"coroutinesCore" : "org.jetbrains.kotlinx:kotlinx-coroutines-core:${coroutinesVersion}",
"firebaseCore" : "com.google.firebase:firebase-core:${firebaseCoreVersion}",
"firebaseMessaging" : "com.google.firebase:firebase-messaging:${firebaseMessagingVersion}",
"jxl" : "net.sourceforge.jexcelapi:jxl:${jxlVersion}",
"kotlin" : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${kotlinVersion}",
"material" : "com.google.android.material:material:${materialVersion}",
"lifecycleExtensions" : "androidx.lifecycle:lifecycle-extensions:${lifecycleVersion}",
"lifecycleReactiveStreams": "androidx.lifecycle:lifecycle-reactivestreams:${lifecycleVersion}",
"navigationFragment" : "androidx.navigation:navigation-fragment-ktx:${navigationVersion}",
"navigationUi" : "androidx.navigation:navigation-ui-ktx:${navigationVersion}",
"preference" : "androidx.preference:preference:${preferenceVersion}",
"recyclerView" : "androidx.recyclerview:recyclerview:${recyclerViewVersion}",
"roomCompiler" : "androidx.room:room-compiler:${roomVersion}",
"roomRuntime" : "androidx.room:room-runtime:${roomVersion}",
"roomRxJava" : "androidx.room:room-rxjava2:${roomVersion}",
"rxAndroid" : "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}",
"rxRelay" : "com.jakewharton.rxrelay2:rxrelay:${rxRelayVersion}",
"threeTen" : "com.jakewharton.threetenabp:threetenabp:${threeTeenVersion}",
"workRuntime" : "androidx.work:work-runtime-ktx:${workVersion}",
"workRxJava" : "androidx.work:work-rxjava2:${workVersion}"
]
appTestDependencies = [
"jUnit" : "junit:junit:${jUnitVersion}",
"core" : "androidx.test:core:${testCoreVersion}",
"runner" : "androidx.test:runner:${testRunnerVersion}",
"rules" : "androidx.test:rules:${testRulesVersion}",
"roomTesting" : "androidx.room:room-testing:${roomVersion}"
]
}