https://github.com/dora4/dcache-solr-support
整合Solr搜索引擎
https://github.com/dora4/dcache-solr-support
Last synced: 8 months ago
JSON representation
整合Solr搜索引擎
- Host: GitHub
- URL: https://github.com/dora4/dcache-solr-support
- Owner: dora4
- License: gpl-3.0
- Created: 2024-07-07T04:02:08.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-19T16:05:20.000Z (about 1 year ago)
- Last Synced: 2025-10-09T00:08:21.904Z (8 months ago)
- Size: 94.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
dcache-solr-support

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