https://github.com/dora4/dcache-greendao-support
🧩 https://github.com/dora4/dcache-android GreenDao扩展包。(局限性,greendao仅支持jdk8)
https://github.com/dora4/dcache-greendao-support
Last synced: 4 months ago
JSON representation
🧩 https://github.com/dora4/dcache-android GreenDao扩展包。(局限性,greendao仅支持jdk8)
- Host: GitHub
- URL: https://github.com/dora4/dcache-greendao-support
- Owner: dora4
- License: gpl-3.0
- Created: 2023-04-21T19:28:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-16T16:57:42.000Z (over 1 year ago)
- Last Synced: 2025-04-02T11:15:57.303Z (about 1 year ago)
- Homepage:
- Size: 97.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
dcache-greendao-support

--------------------------------
#### gradle依赖配置
```groovy
// 添加以下代码到项目根目录下的build.gradle
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
// 添加以下代码到app模块的build.gradle
dependencies {
// 扩展包需要在有主框架的情况下使用
implementation 'com.github.dora4:dcache-android:3.6.3'
implementation 'com.github.dora4:dcache-greendao-support:1.2'
}
```