# KAU Kotlin Android Utils This library contains small helper functions used throughout almost all of my other projects. The goal is to make common interactions executable in a single line. [Changelog](https://github.com/AllanWang/KAU/tree/master/docs/Changelog.md) ------------ KAU is available on JitPack [![](https://jitpack.io/v/ca.allanwang/kau.svg)](https://jitpack.io/#ca.allanwang/kau) [![Build Status](https://travis-ci.org/AllanWang/KAU.svg?branch=master)](https://travis-ci.org/AllanWang/KAU) [![GitHub license](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/AllanWang/KAU/master/LICENSE) To apply, add the following to your root build.gradle: ```gradle allprojects { repositories { ... maven { url "https://jitpack.io" } } } ``` And add the following dependencies (You can use a specific version, commit, or -SNAPSHOT): Note that only core is required if you want the basic features. Note that if you use any particular submodule, it will automatically include all of its necessary submodules. ```gradle dependencies { //All submodules extend this compile "ca.allanwang.kau:core:$KAU" //All submodules with extensive ui extend this compile "ca.allanwang.kau:core-ui:$KAU" compile "ca.allanwang.kau:about:$KAU" compile "ca.allanwang.kau:colorpicker:$KAU" compile "ca.allanwang.kau:imagepicker:$KAU" compile "ca.allanwang.kau:kpref-activity:$KAU" compile "ca.allanwang.kau:searchview:$KAU" } ``` ----------- # Submodules (linked to their respective Docs) ## [Core](/core#readme) * Collection of extension functions and small helper methods applicable in almost any application. * Notable features: KPrefs, Changelog XML, Ripple Canvas, Extensions, Email Builder * Includes [`AppCompat`](https://developer.android.com/topic/libraries/support-library/index.html), [`Material Dialogs (core)`](https://github.com/afollestad/material-dialogs), [`Iconics`](https://github.com/mikepenz/Android-Iconics), [`Anko`](https://github.com/Kotlin/anko), [`Timber`](https://github.com/JakeWharton/timber), [`Kotlin stdlib`](https://kotlinlang.org/api/latest/jvm/stdlib/) ## [Core UI](/core-ui#readme) * Collection of complex views and widgets * Includes `:core`, `:adapter`, [`RxJava`](https://github.com/ReactiveX/RxJava), [`RxAndroid`](https://github.com/ReactiveX/RxAndroid), [`RxKotlin`](https://github.com/ReactiveX/RxKotlin), [`RxBinding`](https://github.com/JakeWharton/RxBinding) ## [About](/about#readme) * Implementation of an overlaying about section, along with automatic lib detection; also includes the lib strings for KAU * Includes `:core-ui`, `:adapter`, [`About Libraries`](https://github.com/mikepenz/AboutLibraries) ## [Adapter](/adapter#readme) * Kotlin bindings for the fast adapter, as well as RecyclerView animations * Includes `:core`, [`Fast Adapter`](https://github.com/mikepenz/FastAdapter) ## [Color Picker](/colorpicker#readme) * Implementation of a color picker dialog with subtle transitions and a decoupled callback * Includes `:core`, [`Material Dialogs (commons)`](https://github.com/afollestad/material-dialogs) ## [Image Picker](/imagepicker#readme) * WIP - Overlaying media chooser * Includes `:core-ui`, [`Glide`](https://github.com/bumptech/glide) ## [Kpref Activity](/kpref-activity#readme) * Fully programmatic implementation of a Preference Activity, backed by RecyclerViews * Includes `:core-ui`, `:adapter`, `colorpicker` ## [SearchView](/searchview#readme) * Material searchview with kotlin bindings * Includes `:core-ui`, `:adapter` ----------- # Showcase ![About Activity Gif](https://github.com/AllanWang/Storage-Hub/blob/master/kau/kau_about_activity.gif) ![KPref Accent Gif](https://github.com/AllanWang/Storage-Hub/blob/master/kau/kau_kpref_accent.gif) ![KPref Items Gif](https://github.com/AllanWang/Storage-Hub/blob/master/kau/kau_kpref_items.gif) ![SearchView Gif](https://github.com/AllanWang/Storage-Hub/blob/master/kau/kau_search_view.gif)