diff options
author | Allan Wang <me@allanwang.ca> | 2018-12-25 22:17:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-25 22:17:14 -0500 |
commit | 9fb5d8a3d21eea3501740d01a254c7ce51e2a9af (patch) | |
tree | fb01f3a4c2e17236bd229f7846b8f813e94c2a78 /app/build.gradle | |
parent | 697d01882ba8b1dbb85484ba3bf6e810e32448fc (diff) | |
parent | 49a67bc7c6d0ea38c88d8b424a2f188941dc609e (diff) | |
download | frost-9fb5d8a3d21eea3501740d01a254c7ce51e2a9af.tar.gz frost-9fb5d8a3d21eea3501740d01a254c7ce51e2a9af.tar.bz2 frost-9fb5d8a3d21eea3501740d01a254c7ce51e2a9af.zip |
Merge pull request #1260 from AllanWang/update/coroutines
Update/coroutines
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index 1b8feda7..a869c7bf 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -156,6 +156,7 @@ dependencies { androidTestImplementation kauDependency.espresso androidTestImplementation kauDependency.testRules androidTestImplementation kauDependency.testRunner + androidTestImplementation "com.squareup.okhttp3:mockwebserver:${OKHTTP}" testImplementation kauDependency.kotlinTest testImplementation "org.jetbrains.kotlin:kotlin-reflect:${KOTLIN}" @@ -180,6 +181,17 @@ dependencies { //noinspection GradleDependency implementation "ca.allanwang.kau:core-ui:$KAU" + // TODO temp + implementation "org.jetbrains.anko:anko-commons:0.10.8" + +// implementation "org.koin:koin-android:${KOIN}" +// testImplementation "org.koin:koin-test:${KOIN}" +// androidTestImplementation "org.koin:koin-test:${KOIN}" + +// androidTestImplementation "io.mockk:mockk:${MOCKK}" + + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${COROUTINES}" + implementation "org.apache.commons:commons-text:${COMMONS_TEXT}" implementation "com.devbrackets.android:exomedia:${EXOMEDIA}" @@ -214,6 +226,8 @@ dependencies { implementation "com.squareup.okhttp3:okhttp:${OKHTTP}" implementation "com.squareup.okhttp3:logging-interceptor:${OKHTTP}" + androidTestImplementation "com.squareup.okhttp3:mockwebserver:${OKHTTP}" + implementation "co.zsmb:materialdrawer-kt:${MATERIAL_DRAWER_KT}" |