-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Support RN64 for android #1667
Support RN64 for android #1667
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Good job! |
Have you checked if RN 63 and 62 are still working with this pr? |
Yes, I tested this PR with RN 62, 63, 64, and works without any problems. |
|
||
# PART II (clean) | ||
for index in {0..2} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
length="${#versions[@]}"
for ((i=0; i < $length; i++ )); do echo $i; done
I think explicitly setting length and using for loop is more readable.
Any ETA on a new release with support for RN64? |
next few days |
Description
Added support for React Native v0.64.0.-rc.2 for android devices. This PR is based on: https://github.com/osdnk/react-native-reanimated/tree/64 - thanks @osdnk 🙌
I compiled with
android-ndk-r19c
Fixes: #1680