-
Notifications
You must be signed in to change notification settings - Fork 134
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
[Android] not working with react-native 0.62.0 #62
Comments
yes, the wrong is : Animated: 'useNativeDriver' was not specified. This is required option adn must be explicitly set to 'true' or 'false' |
have the same problem, hope to solve it ASAP. |
How can I fix this |
This library has nothing to do with Animated. So you may be using some other libraries that depend on this one. Check that first. |
I use only this one, try to run example but still not working on android |
Yes, this library does not use animation, but it does not work on android, IOS working. |
I can reproduce this issue and is looking into it |
A workaround is to inject a |
very funny is that wrapping a so the code looks like: export default () => {
// fixer https://github.com/magicismight/react-native-root-siblings/issues/62
const Wrapper = Platform.OS === 'ios' ? React.Fragment : RootSiblingParent;
return (
<Wrapper>
<App />
</Wrapper>
);
}; @Almouro @pyros2097 @sunnylqm @danielgindi @jigfox updated: this method could fix it indeed, but not 100%, sometimes the page is still not show at all |
tks @Foveluy it work for me too |
I still cannot use destroy function when wrapping a |
Still not works when call |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
There is a workaround above. Please read it before you post "+1"/"same", which is meaningless. |
With the workaround |
Use version 3.2.3 |
It work normally in 0.61.5, but when I update to 0.62.0.
It work in ios only. pls check.
Many thanks
The text was updated successfully, but these errors were encountered: