-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Task :detox:compileMinReactNative46DebugJavaWithJavac FAILED #919
Comments
What JDK? |
I am having the exact same issue with very similar dependencies compileSdkVersion = 27 Detox, Node, Device, Xcode and macOS Versions |
|
Ends up it's not working with React 0.53 - 0.55 but will work with 0.56 due to the overriding of an interface method that is not in the interface in If you take a look at https://github.com/facebook/react-native/blob/0.55-stable/ReactAndroid/src/main/java/com/facebook/react/modules/debug/DidJSUpdateUiDuringFrameDetector.java you can see that in tag 0.55 the method is missing, and is subsequently added in 0.56. Removing the @OverRide annotation from the onBridgeDestroyed() allows me to move forward File: Before:
After:
|
Description
The following error is displayed when
./gradlew assembleHostDebugAndroidTest
is triggered.Steps to Reproduce
I have the following dependencies set up:
I have also followed the migration doc
Detox, Node, Device, Xcode and macOS Versions
The text was updated successfully, but these errors were encountered: