-
Notifications
You must be signed in to change notification settings - Fork 4
/
dependencies.gradle
91 lines (75 loc) · 3.94 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
79
80
81
82
83
84
85
86
87
88
89
90
91
android {
configurations.all {
resolutionStrategy {
force 'org.objenesis:objenesis:2.5.1'
force "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
force "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
force "androidx.fragment:fragment:1.1.0"
}
}
}
dependencies {
implementation fileTree(include: ["*.jar"], dir: "libs")
implementation "androidx.appcompat:appcompat:1.1.0"
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation "com.google.android.material:material:1.2.0-alpha02"
implementation "androidx.cardview:cardview:1.0.0"
implementation "androidx.constraintlayout:constraintlayout:2.0.0-beta3"
implementation 'androidx.core:core-ktx:1.1.0'
implementation "androidx.preference:preference-ktx:1.1.0"
// Kotlin coroutines for asynchronous programming and more
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2"
// For make an http requests
implementation "com.squareup.retrofit2:retrofit:2.7.0"
implementation 'com.squareup.retrofit2:converter-simplexml:2.7.0'
implementation 'pl.droidsonroids:jspoon:1.0.0'
implementation 'pl.droidsonroids.retrofit2:converter-jspoon:1.0.0'
// For dependency injection
implementation "com.google.dagger:dagger:2.25.2"
implementation "com.google.dagger:dagger-android-support:2.25.2"
kapt "com.google.dagger:dagger-compiler:2.25.2"
kapt "com.google.dagger:dagger-android-processor:2.25.2"
// Android ViewModel architecture component
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0-rc03"
implementation "androidx.lifecycle:lifecycle-common-java8:2.2.0-rc03"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0-rc03"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.2.0-rc03"
// For support kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
// For use glide to load images
implementation "com.github.bumptech.glide:glide:4.10.0"
kapt "com.github.bumptech.glide:compiler:4.10.0"
// For use new android navigation library
implementation "androidx.navigation:navigation-fragment:2.1.0"
implementation "androidx.navigation:navigation-ui:2.1.0"
implementation "androidx.navigation:navigation-ui-ktx:2.1.0"
implementation "androidx.navigation:navigation-common-ktx:2.1.0"
implementation "androidx.navigation:navigation-fragment-ktx:2.1.0"
// For unit test
testImplementation "io.mockk:mockk:1.9.3"
testImplementation 'junit:junit:4.12'
testImplementation 'android.arch.core:core-testing:1.1.1'
testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.3.2'
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.2"
testImplementation 'org.json:json:20190722'
testImplementation 'org.robolectric:robolectric:4.3.1'
// For instrumentation test
androidTestImplementation "io.mockk:mockk-android:1.9.3"
androidTestImplementation 'androidx.test:core:1.2.0'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
androidTestImplementation "androidx.test.espresso:espresso-intents:3.2.0"
// For detect memory leaks
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.0'
// For use google chrome activity in our application
implementation 'com.android.support:customtabs:28.0.0'
// For debug
developmentImplementation 'com.github.whataa:pandora:2.0.6'
stagingImplementation 'com.github.whataa:pandora:2.0.6'
productionImplementation 'com.github.whataa:pandora-no-op:2.0.3'
// For user input validations
implementation 'com.mobsandgeeks:android-saripaar:2.0.3'
}