aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-27 11:45:57 -0700
committerAllan Wang <me@allanwang.ca>2017-06-27 11:45:57 -0700
commit82e761f7cd7154a802f94971e8b731c2dfcd0880 (patch)
treeb8712a922c4e6a07ab6425513862b3c1eac4474d /app/build.gradle
parented3efcef75bdcea962c1e281039d8bd96639e6a1 (diff)
downloadfrost-82e761f7cd7154a802f94971e8b731c2dfcd0880.tar.gz
frost-82e761f7cd7154a802f94971e8b731c2dfcd0880.tar.bz2
frost-82e761f7cd7154a802f94971e8b731c2dfcd0880.zip
Test dependencies
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle24
1 files changed, 17 insertions, 7 deletions
diff --git a/app/build.gradle b/app/build.gradle
index d7b9e5fb..bdf3f831 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -85,7 +85,9 @@ dependencies {
})
testCompile 'junit:junit:4.12'
- compile("ca.allanwang:kau:${KAU}")
+ compile("ca.allanwang:kau:${KAU}") {
+ exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
+ }
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:${KOTLIN}"
@@ -109,14 +111,22 @@ dependencies {
compile "com.github.bumptech.glide:glide:${GLIDE}"
annotationProcessor "com.github.bumptech.glide:compiler:${GLIDE}"
- compile("com.mikepenz:materialdrawer:${MATERIAL_DRAWER}@aar") {
- transitive = true
+// compile("com.mikepenz:materialdrawer:${MATERIAL_DRAWER}@aar") {
+// transitive = true
+// }
+ compile("co.zsmb:materialdrawer-kt:${MATERIAL_DRAWER_KT}") {
+ exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
}
- compile "co.zsmb:materialdrawer-kt:${MATERIAL_DRAWER_KT}"
- compile "nz.bradcampbell:paperparcel:${PAPER_PARCEL}"
- compile "nz.bradcampbell:paperparcel-kotlin:${PAPER_PARCEL}"
- kapt "nz.bradcampbell:paperparcel-compiler:${PAPER_PARCEL}"
+ compile("nz.bradcampbell:paperparcel:${PAPER_PARCEL}") {
+ exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
+ }
+ compile("nz.bradcampbell:paperparcel-kotlin:${PAPER_PARCEL}") {
+ exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
+ }
+ kapt("nz.bradcampbell:paperparcel-compiler:${PAPER_PARCEL}") {
+ exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
+ }
compile "com.jude:swipebackhelper:${SWIPE_BACK}"