-
Notifications
You must be signed in to change notification settings - Fork 658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
react-native-charts-wrapper:compileDebugJavaWithJavac FAILED #552
Comments
@hsa1280 Seems to be a broader issue check out facebook/react-native#25293 |
It seems like android support libraries are unavailable, check version. |
Thanks @adambutler and @vikrantshroti . I have tried those solutions, so far, no luck to solve the problem. Do you guys face similar issue? |
For anyone has the same issue, please refer to this link: facebook/react-native#25292 (comment). I solved my problem by adding this change in android/build.gradle: subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.google.android.gms'
&& details.requested.name.contains('play-services-gcm')) {
details.useVersion '16.0.0'
}
}
}
} |
android run command: npx jetify, fixed my issue |
I don't know why, but |
I worked for me |
Hi, I am trying to build an Android application, when I do ./gradlew assembleDebug under android folder, I got this error:
The text was updated successfully, but these errors were encountered: