Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,23 @@ Download via Jcenter:
compile 'me.imid.swipebacklayout.lib:library:1.0.0'
```

Download the **lastest** library from github:

1. Download file [SwipeBackLayout-V1.1.0.arr](https://github.com/luffykou/SwipeBackLayout/blob/master/SwipeBackLayout-V1.1.0.aar), and put it under yourAppName/libs/
2. Add some config to your build.gradle:
```
repositories {
...
flatDir {
dirs 'libs'
}
}
dependencies {
...
//compile 'me.imid.swipebacklayout.lib:library:1.0.0'
compile(name: 'SwipeBackLayout-V1.1.0', ext: 'aar')
}
```

Pull Requests
===
Expand Down
Binary file added SwipeBackLayout-V1.1.0.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:2.2.2'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Jul 11 17:40:25 PDT 2015
#Wed Nov 23 21:34:21 CST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {
minSdkVersion 7
targetSdkVersion 22
versionCode 1
versionName "1.0.0"
versionName "1.1.0"
}
}

Expand Down