https://github.com/dora4/dora-srl-support
🧩 Dora MVVM框架扩展包 - 用于整合SmartRefreshLayout下拉刷新上拉加载框架
https://github.com/dora4/dora-srl-support
Last synced: about 1 year ago
JSON representation
🧩 Dora MVVM框架扩展包 - 用于整合SmartRefreshLayout下拉刷新上拉加载框架
- Host: GitHub
- URL: https://github.com/dora4/dora-srl-support
- Owner: dora4
- License: apache-2.0
- Created: 2023-10-26T18:35:48.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T16:04:35.000Z (about 1 year ago)
- Last Synced: 2025-03-28T17:30:01.498Z (about 1 year ago)
- Language: Kotlin
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
dora-srl-support

--------------------------------
#### gradle依赖配置
添加以下代码到项目根目录下的settings.gradle.kts
```kotlin
dependencyResolutionManagement {
repositories {
maven("https://jitpack.io")
}
}
```
添加以下代码到app模块的build.gradle.kts
```kotlin
dependencies {
// 扩展包必须在有主框架dora的情况下使用
implementation("com.github.dora4:dora:1.3.4")
implementation("com.github.dora4:dora-srl-support:1.0")
}
```
#### 使用方式
在AndroidManifest中加入配置。
```xml
```