Skip to content
This repository was archived by the owner on Apr 24, 2018. It is now read-only.

Commit 571e06c

Browse files
committed
Fix syntax errors on Gradle usage
1 parent d0c7e44 commit 571e06c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,15 @@ Set-up
2424

2525
The library is now only compatible with Gradle out of the box. To use this library in your project, either:
2626

27-
* Add the dependency from Maven like so: `compile 'com.github.amlcurran.showcaseview:library:+5.0.0-SNAPSHOT'`. See above for more information
27+
* Add the dependency from Maven like so: `compile 'com.github.amlcurran.showcaseview:library:5.0.0-SNAPSHOT'`. You'll also need to add the Sonatype snapshots repository to your `repositories {}` tag like so:
28+
~~~
29+
repositories {
30+
mavenCentral()
31+
maven {
32+
url 'https://oss.sonatype.org/content/repositories/snapshots'
33+
}
34+
}
35+
~~~
2836
* Copy the library project into your Gradle project. In your settings.gradle, add the project (using the `include (':libary')` notation). Sync Gradle and then go ahead!
2937

3038
Is it worth using?

0 commit comments

Comments
 (0)