We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe729b5 commit 3181a53Copy full SHA for 3181a53
README.md
@@ -18,17 +18,20 @@ The reason for having Overlay, Pointer and a Tooltip:
18

19
20
# How to setup
21
-Add the below dependencies into your gradle file:
+Add the below dependencies into your app level build.gradle file:
22
23
```groovy
24
repositories {
25
mavenCentral()
26
- maven(){
+ maven() {
27
url "https://oss.sonatype.org/content/repositories/snapshots"
28
}
29
30
-compile ('com.github.worker8:tourguide:1.0.17-SNAPSHOT@aar'){
31
- transitive=true
+dependencies {
+ ...
32
+ compile ('com.github.worker8:tourguide:1.0.17-SNAPSHOT@aar') {
33
+ transitive=true
34
+ }
35
36
```
37
0 commit comments