Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jenly1314 committed May 24, 2024
1 parent 7b26c6d commit 3eaf19d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ UltraSwipeRefreshTheme.config = UltraSwipeRefreshTheme.config.copy(

## 版本记录

#### 待发布版本 ([提前体验](test.md)

#### v1.1.2 :2024-5-22
* 修复BUG:部分机型在某些特定场景下,出现“无法再次触发下拉刷新”的问题。([#7](https://github.com/jenly1314/UltraSwipeRefresh/issues/7)

Expand Down
32 changes: 32 additions & 0 deletions test.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

## 待发布版本

待发布版本使用**Jit Pack**仓库;待测试稳定后,将统一发布正式版本至 **Maven Central** 仓库

## 引入

### Gradle:

1. 在Project的 **build.gradle****setting.gradle** 中添加远程仓库

```gradle
repositories {
//...
mavenCentral()
maven { url 'https://jitpack.io' }
}
```

2. 在Module的 **build.gradle** 里面添加引入依赖项

```gradle
// 极致体验的Compose刷新组件 (*必须)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh:7b26c6d4e5'
// 经典样式的指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-classic:7b26c6d4e5'
// Lottie动画指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-lottie:7b26c6d4e5'
// 进度条样式的指示器 (可选)
implementation 'com.github.jenly1314.UltraSwipeRefresh:refresh-indicator-progress:7b26c6d4e5'
```

0 comments on commit 3eaf19d

Please sign in to comment.