This repository has been archived by the owner on Sep 3, 2023. It is now read-only.
Release 0.8.1.0
- Proguard rules are now included in the library's AAR that are merged with apps that depend on this library. These rules prevent important library classes (progress drawable animators) from being removed when your app is built into an APK.
- Drawables from MaterialProgressBar have been used as of version 0.8.0.0. Thanks for the useful library, @DreaminginCodeZH!
- Your app's
colorControlHighlight
theme attribute will now be respected, and it will be used as the default color for action button ripples on Lollipop and above.- In addition, a new
md_btn_ripple_color
global theming attribute was added to theme allMaterialDialog
's, along with abuttonRippleColor(int)
method inMaterialDialog$Builder
.
- In addition, a new
- Moved
FolderChooserDialog
from the sample project into commons. - The README now has a separate table of contents for commons components, including the
FolderChooserDialog
,ColorChooserDialog
, andMaterialSimpleListAdapter
.- The
FolderChooserDialog
requires theREAD_EXTERNAL_STORAGE
permission. On Android 6.0 Marshmallow, your app will need to request this permission. See the sample project for an example of how this is done.
- The
Note that the transitive property is needed for the Gradle dependency:
compile('com.afollestad.material-dialogs:core:0.8.1.0@aar') {
transitive = true
}