diff options
author | Allan Wang <me@allanwang.ca> | 2017-07-09 00:46:24 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-07-09 00:46:24 -0700 |
commit | 2bf5e9efde28cce8186b2cdf75d8fafb6c9125ad (patch) | |
tree | 6a80d38c0bd949685ee014b81e07c45b60becec7 /imagepicker | |
parent | 40d6788abfa46ac99f46b32fd4aeb78e67c3b6f6 (diff) | |
download | kau-2bf5e9efde28cce8186b2cdf75d8fafb6c9125ad.tar.gz kau-2bf5e9efde28cce8186b2cdf75d8fafb6c9125ad.tar.bz2 kau-2bf5e9efde28cce8186b2cdf75d8fafb6c9125ad.zip |
Clean up and optimize
Diffstat (limited to 'imagepicker')
-rw-r--r-- | imagepicker/build.gradle | 4 | ||||
-rw-r--r-- | imagepicker/src/main/kotlin/ca/allanwang/kau/imagepicker/ImagePickerActivityBase.kt | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/imagepicker/build.gradle b/imagepicker/build.gradle index b98b736..14c07ac 100644 --- a/imagepicker/build.gradle +++ b/imagepicker/build.gradle @@ -1,11 +1,13 @@ -apply from: '../android.gradle' +apply from: '../android-lib.gradle' android { resourcePrefix "kau_" } dependencies { + compile project(':core-ui') + compile "com.github.bumptech.glide:glide:${GLIDE}" kapt "com.github.bumptech.glide:compiler:${GLIDE}" } diff --git a/imagepicker/src/main/kotlin/ca/allanwang/kau/imagepicker/ImagePickerActivityBase.kt b/imagepicker/src/main/kotlin/ca/allanwang/kau/imagepicker/ImagePickerActivityBase.kt index 47d57c2..8dfbeab 100644 --- a/imagepicker/src/main/kotlin/ca/allanwang/kau/imagepicker/ImagePickerActivityBase.kt +++ b/imagepicker/src/main/kotlin/ca/allanwang/kau/imagepicker/ImagePickerActivityBase.kt @@ -10,7 +10,6 @@ import android.support.v7.app.AppCompatActivity import android.support.v7.widget.GridLayoutManager import android.support.v7.widget.RecyclerView import android.support.v7.widget.Toolbar -import android.transition.TransitionInflater import ca.allanwang.kau.logging.KL import ca.allanwang.kau.ui.widgets.ElasticDragDismissFrameLayout import ca.allanwang.kau.utils.bindView |