-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathandroid-commons.gradle
41 lines (35 loc) · 1.2 KB
/
android-commons.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
import dependancies.Deps
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
api Deps.Tools.kotlinStdLib
api Deps.Koin.main
api Deps.Koin.androidXScope
api Deps.Koin.androidXViewModel
api Deps.Koin.test
api Deps.AndroidX.coreKtx
api Deps.AndroidX.preferences
api Deps.AndroidX.swipeRefresh
api Deps.AndroidX.material
api Deps.Rx.Kotlin
api Deps.Rx.Android
api Deps.MockWebServer.main
api Deps.Testing.Helpers.apacheCommonsIo
api Deps.Logger.timber
api Deps.FHIR.fhirStructure
api Deps.FHIR.fhirAndroid
testImplementation Deps.Testing.jUnit
testImplementation Deps.Testing.mockito
testImplementation Deps.Testing.coreTesting
testImplementation Deps.Testing.Helpers.gson
androidTestImplementation Deps.Testing.espressoCore
androidTestImplementation Deps.Testing.espressoIntents
androidTestImplementation Deps.Testing.espressoContrib
androidTestImplementation Deps.MockWebServer.main
configurations {
all*.exclude group: 'org.codehaus.woodstox'
all*.exclude group: 'org.apache.httpcomponents'
}
}