Skip to content

Commit ac50ab2

Browse files
authored
Update README.md
1 parent f45cf68 commit ac50ab2

File tree

1 file changed

+22
-20
lines changed

1 file changed

+22
-20
lines changed

README.md

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Simple Android library, which can serve as Image Slider too !
1414

1515
## **Gradle:**
1616
`
17-
compile 'com.github.rohitksingh:Flurry:1.0.2
17+
compile 'com.github.rohitksingh:Flurry:1.0.3
1818
`
1919

2020
<a name="Header"/>
@@ -23,7 +23,7 @@ compile 'com.github.rohitksingh:Flurry:1.0.2
2323
If you are already familiar with gradle. Add the following code in your root build.gradle .
2424
If you are new to gradle see below [Step by step integration guide](#stepbystepgradle) .
2525

26-
> build.gradle
26+
> Add hosting repository url
2727
2828
allprojects {
2929
repositories {
@@ -32,10 +32,10 @@ If you are new to gradle see below [Step by step integration guide](#stepbystep
3232
}
3333
}
3434

35-
> build.gradle
35+
> Add compile time dependency
3636
3737
dependencies {
38-
compile 'com.github.rohitksingh:Flurry:1.0.2'
38+
compile 'com.github.rohitksingh:Flurry:1.0.3'
3939
}
4040

4141
<a name="usage"/>
@@ -65,41 +65,43 @@ If you are new to gradle see below [Step by step integration guide](#stepbystep
6565
6666
## **Check the latest Version:**
6767
68-
You can find the latest version of Flurry in [JitPack.io](https://jitpack.io/#rohitksingh/Flurry-The-Carousel)
68+
You can find the latest version of Flurry in [JitPack.io](https://jitpack.io/#rohitksingh/Flurry)
6969

7070
<a name= "stepbystepgradle"/>
7171

7272
## **Flurry step by step gradle integration for gradle beginners:**
7373

74-
### **1) Go to your root build.gradle**
75-
dependencies {
76-
compile 'com.github.User:Repo:Tag'
77-
}
78-
79-
![repo](https://user-images.githubusercontent.com/11274840/30658631-38906c12-9df0-11e7-9625-5dd06f38c2ab.png)
80-
81-
### **2) Add repository link and dependency like this**
74+
### **1) Go to your project build.gradle and this**
8275

83-
84-
allprojects {
76+
allprojects {
8577
repositories {
8678
...
8779
maven { url 'https://jitpack.io' }
8880
}
89-
}
81+
}
82+
83+
84+
85+
![repo](https://user-images.githubusercontent.com/11274840/30658631-38906c12-9df0-11e7-9625-5dd06f38c2ab.png)
86+
87+
### **2) Go to app modile build.gradle and add this**
88+
89+
dependencies {
90+
compile 'com.github.rohitksingh:Flurry:1.0.3'
91+
}
92+
93+
9094

9195
![compile](https://user-images.githubusercontent.com/11274840/30658703-6ea1122a-9df0-11e7-873d-32e165c03d80.png)
9296

9397

94-
### **3) Finally your build.gradle file will look like this**
9598

96-
??????? Image
9799

98-
### **4) Hit the sync Button**
100+
### **3) Hit the sync Button**
99101

100102
![gradle](https://user-images.githubusercontent.com/11274840/30658730-8ad314ca-9df0-11e7-886c-ac9d4ed4a7e6.png)
101103

102-
And you are done
104+
### And you are done.
103105

104106
<a name="aboutAuthor"/>
105107

0 commit comments

Comments
 (0)