-
Notifications
You must be signed in to change notification settings - Fork 1
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
Does not seem to work with RN 0.56 #5
Comments
Hey, thanks - I'm knee deep in a web js project right now, so haven't been RN'ing. Should be back to RN in a couple of weeks, and will look at this then. |
I've just been having a look at this today and I'm thinking to go ahead with the upgrade to .57.4 to see how it pans out. It'll remove the gradle upgrade from my scripts (which I like) and it looks like there are some already using .57 with success. This is interesting: wix/react-native-navigation#3851 (comment) I don't plan to use react components in the topbar (yet!) - by the time I get there .58 probz would have landed and so things might be more rosy. Anyway, Its worth a shot and I'll post back here how it goes. cc @jamonholmgren for interests sake |
Nice! Good job :) still open for merging all of that in ignite-native-navigation when you want :) |
Hi there,
This issue is a bit of straight thought sharing, and maybe a bit of useful bug reporting 😅
Wanted to try out RNN v2, but I went through 3 errors while trying the plugin:
Error: Cannot find module 'fs-jetpack'
(solved byyarn add -D fs-jetpack
)Error: Cannot find module 'ramda'
(solved byyarn add -D ramda
)✖ 'implementation "com.android.support:appcompat-v7:25.4.0"' was not found in file MyProject/android/app/build.gradle.
I guess 'cause RN 0.56 uses now the
ext
variables for versions (I gotcompile "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
).Another problem to solve is that RN 0.56 does not come with gradle 3 support.
So we're stuck between using 0.57 with gradle 3 out of the box, but not supported by RNN (does using
missingDimensionStrategy "RNN.reactNativeVersion", "reactNative56"
with 0.57 work? 🤔 ) or handling the gradle upgrade inignite-react-native-navigation
for 0.56?The text was updated successfully, but these errors were encountered: