'react native pdf view error resolving dependency

I have been stuck with this problem in react native version 0.64 latest. pdf view is throwing an error while configuring. I don't understand and not found the right answer.

enter image description here



Solution 1:[1]

You can get more information about this error on this question: "JCenter is at end of life" android lint warning, what is the replacement?

You need to add mavenCentral() to android/build.gradle

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

and

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Enes Can Güneş