diff --git a/README.md b/README.md index 8ab51d2..55d42da 100644 --- a/README.md +++ b/README.md @@ -48,25 +48,22 @@ Then in your code: flowTextView.setText(html); ``` -Download +Gradle -------- -If you're still using Eclipse then grab the [latest JAR version][2] +Add jitpack to your your build.gradle at the end of repositories: -Otherwise you can grab it using Maven: - -```xml - - uk.co.deanwild - flowtextview - 2.0.2 - aar - +```groovy +repositories { + // ... + maven { url "https://jitpack.io" } + } ``` -or Gradle: + +Add the dependency: ```groovy -compile 'uk.co.deanwild:flowtextview:2.0.2@aar' +compile 'com.github.deano2390:FlowTextView:2.0.3' ```