You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2021. It is now read-only.
As an android developer, I get this error sometimes. What this usually means is that my android build tools version or some of my dependencies are outdated. You can update the build tools version by going into the android/app/build.gradle file and changing these two lines of code:
compileSdkVersion 26
buildToolsVerion '26.0.2'
The versions in your app may differ.
As of today, the latest versions are 26 and '27.0.3' respectively, so replace the two lines with:
compileSdkVersion 26
buildToolsVerion '27.0.3'
If this doesn't fix it, try updating your dependencies with npm update or whichever package manager you use.
EDIT:
Also, there might also be outdated dependencies inside the build.gradle file. It should look like this:
Where somedependency is the name of the dependency and the number following the colon is its version. Try googling those dependencies to find their latest versions and replace the current ones with them. Just back up your build.gradle before this, just in case.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I get this error after react-native run-android:
The text was updated successfully, but these errors were encountered: