Browse Source

Added transitive to the README, resolves https://github.com/afollestad/material-dialogs/issues/703

Aidan Follestad 10 years ago
parent
commit
f634df8879
1 changed files with 6 additions and 2 deletions
  1. 6 2
      README.md

+ 6 - 2
README.md

@@ -88,7 +88,9 @@ You can create basic, list, single/multi choice, progress, input, etc. dialogs w
 
 ```gradle
 dependencies {
-    compile 'com.afollestad.material-dialogs:core:0.8.0.1@aar'
+    compile('com.afollestad.material-dialogs:core:0.8.0.1@aar')) {
+        transitive = true
+    }
 }
 ```
 
@@ -99,7 +101,9 @@ The *commons* module contains extensions to the library that not everyone may ne
 
 ```gradle
 dependencies {
-    compile 'com.afollestad.material-dialogs:commons:0.8.0.1@aar'
+    compile('com.afollestad.material-dialogs:commons:0.8.0.1@aar') {
+        transitive = true
+    }
 }
 ```