Skip to content

Commit

Permalink
发布1.1.0-16版本
Browse files Browse the repository at this point in the history
  • Loading branch information
scwang90 committed Nov 30, 2018
1 parent db9d285 commit 7ae2785
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ SmartRefreshLayout的目标是打造一个强大,稳定,成熟的下拉刷
#### 1.在 build.gradle 中添加依赖
```
//1.1.0 API改动过大,老用户升级需谨慎
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-15'
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-15'//没有使用特殊Header,可以不加这行
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-16'
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-16'//没有使用特殊Header,可以不加这行
compile 'com.android.support:appcompat-v7:25.3.1'//版本 23以上(必须)
//1.0.5 当1.1.0出现问题可以回退到1.0.5.1
Expand Down
4 changes: 2 additions & 2 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ Please rest assured that I have divided it into three packages, when used to ref
## Usage
#### 1.Add a gradle dependency.
```
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-15'
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-15'//If you use the special Header
compile 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-16'
compile 'com.scwang.smartrefresh:SmartRefreshHeader:1.1.0-alpha-16'//If you use the special Header
compile 'com.android.support:appcompat-v7:25.3.1'
Expand Down
2 changes: 1 addition & 1 deletion refresh-footer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies {
})
testImplementation 'junit:junit:4.12'
// api 'com.android.support:support-compat:25.3.1'
api project(':refresh-layout')
compileOnly project(':refresh-layout')
}

//publish {
Expand Down
8 changes: 4 additions & 4 deletions refresh-header/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ dependencies {
})
testImplementation 'junit:junit:4.12'
//noinspection GradleDependency
api 'com.android.support:support-annotations:25.1.0'
compileOnly 'com.android.support:support-annotations:25.1.0'
//noinspection GradleDependency,GradleCompatible
api 'com.android.support:support-v4:22.1.0'
api project(':refresh-layout')
compileOnly 'com.android.support:support-v4:22.1.0'
compileOnly project(':refresh-layout')
}

publish {
userOrg = 'scwang90'
groupId = 'com.scwang.smartrefresh'
artifactId = 'SmartRefreshHeader'
// version = '1.1.0-alpha-14'
publishVersion = '1.1.0-alpha-15'
publishVersion = '1.1.0-alpha-16'
desc = 'Some delicate headers of SmartRefreshLayout'
website = "https://github.com/scwang90/${rootProject.name}"
archivesPath = '../build/outputs' //指定将要上传的压缩包路径,如果不写则默认上传系统生成的jar和aar
Expand Down
10 changes: 5 additions & 5 deletions refresh-layout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ dependencies {
testImplementation 'junit:junit:4.12'

//noinspection GradleDependency
api 'com.android.support:support-annotations:25.1.0'
compileOnly 'com.android.support:support-annotations:25.1.0'
//noinspection GradleDependency,GradleCompatible
api 'com.android.support:support-v4:22.1.0'
compileOnly 'com.android.support:support-v4:22.1.0'
//noinspection GradleDependency,GradleCompatible
api 'com.android.support:recyclerview-v7:21.0.0'
compileOnly 'com.android.support:recyclerview-v7:21.0.0'
//noinspection GradleDependency,GradleCompatible
api 'com.android.support:design:23.0.0'
compileOnly 'com.android.support:design:23.0.0'

}

Expand All @@ -50,7 +50,7 @@ publish {
groupId = 'com.scwang.smartrefresh'
artifactId = 'SmartRefreshLayout'
// version = '1.1.0-alpha-14'
publishVersion = '1.1.0-alpha-15'
publishVersion = '1.1.0-alpha-16'
desc = 'An intelligent refresh layout'
website = "https://github.com/scwang90/${rootProject.name}"
archivesPath = '../build/outputs' //指定将要上传的压缩包路径,如果不写则默认上传系统生成的jar和aar
Expand Down

0 comments on commit 7ae2785

Please sign in to comment.