Skip to content

Commit c8fe6cd

Browse files
Merge branch 'antondudakov-master'
1 parent fbc83dc commit c8fe6cd

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,18 @@ This is home page of FlowLayoutManager & It's Demo App. Please check [feature vi
55
Following is links to lib & demo app
66
- [Flow LayoutManager](flowlayoutmanager)
77
- [Demo Application](app)
8+
9+
Add it in your root build.gradle at the end of repositories:
10+
11+
allprojects {
12+
repositories {
13+
...
14+
maven { url 'https://jitpack.io' }
15+
}
16+
}
17+
18+
Step 2. Add the dependency
19+
20+
dependencies {
21+
compile 'com.github.simonebortolin:FlowLayoutManager:1.3.0'
22+
}

flowlayoutmanager/build.gradle

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'com.android.library'
44
apply plugin: 'com.jfrog.bintray'
55

66
project.ext {
7-
libVersion = '1.2.3.2'
7+
libVersion = '1.3.0'
88
libVersionCode = 7
99
libGroupId = 'com.xiaofeng.android'
1010
libArtifactId = 'flowlayoutmanager'
@@ -57,8 +57,3 @@ dependencies {
5757

5858
Properties properties = new Properties()
5959
properties.load(project.rootProject.file('local.properties').newDataInputStream())
60-
61-
62-
task wrapper(type: Wrapper) {
63-
gradleVersion = '2.10'
64-
}

0 commit comments

Comments
 (0)