|
@@ -4,10 +4,32 @@ The code you see below is also found in the sample project. You can download a A
|
|
|
|
|
|
---
|
|
|
|
|
|
+### Gradle Dependency (jCenter)
|
|
|
+
|
|
|
+Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
|
|
|
+
|
|
|
+```Groovy
|
|
|
+dependencies {
|
|
|
+ compile 'com.afollestad:material-dialogs:0.5.9'
|
|
|
+}
|
|
|
+```
|
|
|
+
|
|
|
+[  ](https://bintray.com/drummer-aidan/maven/material-dialogs/_latestVersion)
|
|
|
+
|
|
|
+***Make sure*** you're using the jCenter repository, Android Studio uses this repository by default.
|
|
|
+
|
|
|
+Check back here frequently for version updates.
|
|
|
+
|
|
|
+---
|
|
|
+
|
|
|
### What's New
|
|
|
|
|
|
For the full history, see the [Changelog](https://github.com/afollestad/material-dialogs/blob/master/CHANGELOG.md).
|
|
|
|
|
|
+###### Version 0.5.9
|
|
|
+
|
|
|
+> 1. Pull request from [Kevin Barry](https://github.com/teslacoil) that makes some very important, mostly visual, improvements/fixes: https://github.com/afollestad/material-dialogs/pull/169
|
|
|
+
|
|
|
###### Version 0.5.8
|
|
|
|
|
|
> 1. Pull request from [hzsweers](https://github.com/hzsweers): https://github.com/afollestad/material-dialogs/pull/167
|
|
@@ -60,24 +82,6 @@ For the full history, see the [Changelog](https://github.com/afollestad/material
|
|
|
|
|
|
---
|
|
|
|
|
|
-### Gradle Dependency (jCenter)
|
|
|
-
|
|
|
-Easily reference the library in your Android projects using this dependency in your module's `build.gradle` file:
|
|
|
-
|
|
|
-```Groovy
|
|
|
-dependencies {
|
|
|
- compile 'com.afollestad:material-dialogs:0.5.8'
|
|
|
-}
|
|
|
-```
|
|
|
-
|
|
|
-[  ](https://bintray.com/drummer-aidan/maven/material-dialogs/_latestVersion)
|
|
|
-
|
|
|
-***Make sure*** you're using the jCenter repository, Android Studio uses this repository by default.
|
|
|
-
|
|
|
-Check back here frequently for version updates.
|
|
|
-
|
|
|
----
|
|
|
-
|
|
|
### Basic Dialog
|
|
|
|
|
|
Here's a basic example that mimics the dialog you see on Google's Material design guidelines
|