I am moving to androidX but I receive:
Could not find androidx.appcompat:appcompat:1.0.2.
Required by:
project :app > com.facebook.react:react-native:0.60.4
My project gradle.build:
buildscript {
repositories {
maven { url 'https://maven.google.com' }
jcenter()
}
dependencies {
...
}
}
allprojects {
repositories {
mavenLocal()
jcenter()
maven {
url "https://jitpack.io"
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"
}
}
}
It seems like I am missing another source. Any suggestions?