'react native pdf view error resolving dependency
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ş |

