I'm trying to build my React Native project
react-native run-android
I get this error
Could not resolve com.android.support:support-compat:26.1.0.
....
Required by: project :react-native-maps
...
Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.
However, my build.gradle
file has
implementation "com.android.support:appcompat-v7:28.0.0"
and the builTools 28.0.3 exist in my ~/Library/Android/sdk/tools, i have also tried using both
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
implementation "com.android.support:appcompat-v7:+"
This doesn't work for me either.