Skip to content
This repository has been archived by the owner on Sep 3, 2023. It is now read-only.

Release 0.8.1.0

Compare
Choose a tag to compare
@afollestad afollestad released this 23 Sep 21:33
  1. 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.
  2. 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 all MaterialDialog's, along with a buttonRippleColor(int) method in MaterialDialog$Builder.
  3. Moved FolderChooserDialog from the sample project into commons.
  4. The README now has a separate table of contents for commons components, including the FolderChooserDialog, ColorChooserDialog, and MaterialSimpleListAdapter.
    • The FolderChooserDialog requires the READ_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.

Note that the transitive property is needed for the Gradle dependency:

compile('com.afollestad.material-dialogs:core:0.8.1.0@aar') {
        transitive = true
}