aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-12 16:51:27 -0700
committerAllan Wang <me@allanwang.ca>2017-06-12 16:51:27 -0700
commita17ae247c496d2ec8038f36428812f3c2e410d87 (patch)
tree310e5a4d49a08dd8dcf876cd8768ce0053ba2df0 /app/build.gradle
parent605a08c2e2e8634263d7626cf7471310add3acb2 (diff)
downloadfrost-a17ae247c496d2ec8038f36428812f3c2e410d87.tar.gz
frost-a17ae247c496d2ec8038f36428812f3c2e410d87.tar.bz2
frost-a17ae247c496d2ec8038f36428812f3c2e410d87.zip
Add kau and web scrolling
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle36
1 files changed, 9 insertions, 27 deletions
diff --git a/app/build.gradle b/app/build.gradle
index fbd0a32f..dc682577 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -61,6 +61,10 @@ android {
main.java.srcDirs += 'src/main/kotlin'
test.java.srcDirs += 'src/test/kotlin'
}
+
+ packagingOptions {
+ pickFirst 'META-INF/library_release.kotlin_module'
+ }
}
dependencies {
@@ -70,30 +74,16 @@ dependencies {
})
testCompile 'junit:junit:4.12'
+ compile "ca.allanwang:kau:${KAU}"
+
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
- compile "com.android.support:appcompat-v7:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:support-v4:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:support-v13:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:design:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:cardview-v7:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support:preference-v14:${ANDROID_SUPPORT_LIBS}"
- compile "com.android.support.constraint:constraint-layout:${CONSTRAINT_LAYOUT}"
-
- //Logging
- compile "com.jakewharton.timber:timber:${TIMBER}"
-
debugCompile "com.squareup.leakcanary:leakcanary-android:${LEAK_CANARY}"
releaseTestCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
testCompile "com.squareup.leakcanary:leakcanary-android-no-op:${LEAK_CANARY}"
- //Dialog
- compile "com.afollestad.material-dialogs:core:${MATERIAL_DIALOG}"
- compile "com.afollestad.material-dialogs:commons:${MATERIAL_DIALOG}"
-
compile "com.github.Raizlabs.DBFlow:dbflow:${DBFLOW}"
compile "com.github.Raizlabs.DBFlow:dbflow-core:${DBFLOW}"
annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${DBFLOW}"
@@ -107,22 +97,15 @@ dependencies {
testCompile "org.robolectric:robolectric:${ROBOELECTRIC}"
//Icons
- compile "com.mikepenz:iconics-core:${ICONICS}@aar"
compile "com.mikepenz:google-material-typeface:${IICON_GOOGLE}.original@aar"
compile "com.mikepenz:material-design-iconic-typeface:${IICON_MATERIAL}@aar"
compile "com.mikepenz:community-material-typeface:${IICON_COMMUNITY}@aar"
- //Butterknife
- compile "com.jakewharton:butterknife:${BUTTERKNIFE}"
- annotationProcessor "com.jakewharton:butterknife-compiler:${BUTTERKNIFE}"
-
compile "io.reactivex.rxjava2:rxjava:${RX_JAVA}"
compile "io.reactivex.rxjava2:rxandroid:${RX_ANDROID}"
compile "com.jakewharton.rxbinding2:rxbinding:${RX_BINDING}"
compile "com.jakewharton.rxbinding2:rxbinding-appcompat-v7:${RX_BINDING}"
-// compile "org.greenrobot:eventbus:${EVENT_BUS}"
-
// compile "com.facebook.stetho:stetho-okhttp3:${STETHO}"
compile "com.lapism:searchview:${SEARCH_VIEW}"
@@ -145,11 +128,10 @@ dependencies {
compile "com.f2prateek.rx.preferences2:rx-preferences:${RX_PREFS}"
-// 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}"
- compile "com.mikepenz:fastadapter-commons:${FAST_ADAPTER}@aar"
compile "nz.bradcampbell:paperparcel:${PAPER_PARCEL}"
compile "nz.bradcampbell:paperparcel-kotlin:${PAPER_PARCEL}"