From d46b7270da145edfce287995d8c8f7ff5927a278 Mon Sep 17 00:00:00 2001 From: Elsen Novraditya Date: Wed, 30 Sep 2015 17:30:39 +0700 Subject: [PATCH] Update README. Use transitive = true to avoid NoClassDefFoundError due to a dependency that is not included into a build. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a005651..c8a14f0 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,9 @@ then add a library dependency ```groovy dependencies { - compile 'com.github.ozodrukh:CircularReveal:1.1.1@aar' + compile ('com.github.ozodrukh:CircularReveal:1.1.1@aar') { + transitive = true; + } } ```