aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan Follestad <drummer.aidan@gmail.com>2015-12-19 18:13:30 -0600
committerAidan Follestad <drummer.aidan@gmail.com>2015-12-19 18:13:30 -0600
commit8cea752dda4338fb63c4614622ec2d29bcbcc457 (patch)
tree74d560eaaba5698ae1a27ffa4b439ce10477503c
parent4392ed3c002eab0fc7b8fbd2a01e09037e184d21 (diff)
downloadafollestad-8cea752dda4338fb63c4614622ec2d29bcbcc457.tar.gz
Update README.md
-rw-r--r--README.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/README.md b/README.md
index 6c18fe4..e7cd472 100644
--- a/README.md
+++ b/README.md
@@ -101,12 +101,10 @@ allprojects {
The *core* module contains all the major classes of this library, including `MaterialDialog` and `AlertDialogWrapper`.
You can create basic, list, single/multi choice, progress, input, etc. dialogs with core.
-Replace `w.x.y.z` with the current version, which can be seen on the JitPack badge at the top of this document.
-
```gradle
dependencies {
...
- compile('com.github.afollestad.material-dialogs:core:0.8.5.2@aar') {
+ compile('com.github.afollestad.material-dialogs:core:0.8.5.3@aar') {
transitive = true
}
}
@@ -117,14 +115,12 @@ dependencies {
The *commons* module contains extensions to the library that not everyone may need. This includes the
`ColorChooserDialog`, `FolderChooserDialog`, the Material `Preference` classes, and `MaterialSimpleListAdapter`/`MaterialSimpleListItem`.
-Replace `w.x.y.z` with the current version, which can be seen on that JitPack badge above.
-
```gradle
dependencies {
// ... other dependencies here
- compile('com.github.afollestad.material-dialogs:commons:0.8.5.2@aar') {
+ compile('com.github.afollestad.material-dialogs:commons:0.8.5.3@aar') {
transitive = true
}
}