From 95bf1cfe12d5d35ef2731dd02fdab0b3dc0f63f0 Mon Sep 17 00:00:00 2001 From: Jantz Carney Date: Fri, 15 Mar 2019 23:59:43 -0500 Subject: [PATCH] Fix unresolved dependency error --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 22e23fb..ee246de 100644 --- a/README.md +++ b/README.md @@ -111,11 +111,11 @@ Add this to **top** level `build.gradle`: Add this under dependencies: - compile 'com.github.worker8:RadioGroupPlus:v1.0.1' + implementation 'com.github.worker8:radiogroupplus:v1.0.1' If you run into conflict, use this instead: - compile('com.github.worker8:RadioGroupPlus:v1.0.1') { + implementation('com.github.worker8:radiogroupplus:v1.0.1') { transitive = false; }