如何解决folereader依赖问题



我尝试使用folereader库在我的项目中使用epub文件。我将依赖项添加到我的项目并构建它,但我得到这个错误:

FAILURE: Build completed with 7 failures.

1: Task failed with an exception.

  • 哪里出错了:任务':app:checkDebugAarMetadata'执行失败。

无法解析配置':app:debugRuntimeClasspath'的所有文件。无法找到com.github.codetoart:r2-shared-kotlin:1.0.4-2。可在以下地点搜索:——https://dl.google.com/dl/android/maven2/com/github/codetoart/r2——共享- kotlin/1.0.4 2/r2 -共享-芬兰湾的科特林1.0.4 - 2. - pom——https://repo.maven.apache.org/maven2/com/github/codetoart/r2——共享- kotlin/1.0.4 2/r2 -共享-芬兰湾的科特林1.0.4 - 2. - pom——https://jcenter.bintray.com/com/github/codetoart/r2——共享- kotlin/1.0.4 2/r2 -共享-芬兰湾的科特林1.0.4 - 2. - pom要求:项目:app>com.folioreader: folioreader: 0.5.4无法找到com.github.codetoart:r2-streamer-kotlin:1.0.4-2。可在以下地点搜索:——https://dl.google.com/dl/android/maven2/com/github/codetoart/r2——拖缆- kotlin/1.0.4 2/r2流光1.0.4 - 2. - pom——芬兰湾的科特林——https://repo.maven.apache.org/maven2/com/github/codetoart/r2——拖缆- kotlin/1.0.4 2/r2流光1.0.4 - 2. - pom——芬兰湾的科特林——https://jcenter.bintray.com/com/github/codetoart/r2——拖缆- kotlin/1.0.4 2/r2流光1.0.4 - 2. - pom——芬兰湾的科特林要求:项目:app>com.folioreader: folioreader: 0.5.4

build.gradle:

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

build.gradle(应用):

implementation "com.folioreader:folioreader:0.5.4"
implementation 'com.github.codetoart:r2-shared-kotlin:1.0.4-2'

似乎这个依赖,特别是这个组ID存在于Jitpack.io中。您应该简单地添加jitpack。IO到gradle仓库。详见:https://jitpack.io/p/codetoart/r2-shared-kotlin

检查如何实现。

你需要这些存储库

allprojects {
repositories {
...
jcenter()
maven { url "https://jitpack.io" }
...
}
}

和以下依赖项

dependencies {
...
implementation "com.folioreader:folioreader:0.5.4"
...
}

相关内容

  • 没有找到相关文章

最新更新