反应本机pdf视图错误解决依赖

react native pdf view error resolving dependency

我在最新的 React Native 版本 0.64 中遇到了这个问题。 pdf 视图在配置时抛出错误。我不明白,也没有找到正确的答案。

您可以在这个问题上获得有关此错误的更多信息:

您需要将 mavenCentral() 添加到 android/build.gradle

repositories {
        google()
        jcenter()
        mavenCentral() //add this
    }

allprojects {
    repositories {
        ...
        google()
        jcenter()
        mavenCentral() //add this
        maven { url 'https://www.jitpack.io' }
    }
}