-
Notifications
You must be signed in to change notification settings - Fork 466
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
Add Windows AsyncStorage #327
Add Windows AsyncStorage #327
Conversation
@krizzu there are bunch of Flow check errors inside |
@kaiguo It's caused by bumping RN version, while Flow stays on the old one. |
@krizzu |
I see. Well, we just need to make sure that AS works with 0.61.5 now. |
cc01e03
to
67593b9
Compare
67593b9
to
bc585f3
Compare
@krizzu flowconfig changes did fix the flow check errors, thanks! But looks like both iOS and Android builds are broken after upgrading to 61. I created a separate branch here which fixed Android and Flow issues. For iOS, I think we need to switch to pod linking, looks like that's the only supported way on 61+. I'm not very familiar with iOS so I created #328 to track the rest of the work. I'll keep react-native on 59 in this PR for now. |
PR that upgrades iOS and Android sample apps to RN 61: #329. |
@kaiguo Sorry for keeping you waiting, but I'm waiting for someone else to have a look here (with Windows experience, asked at RN channel). |
Sure, good to have some extra eyes on this : ) |
"@react-native-community/cli": "4.6.3", | ||
"@react-native-community/cli-platform-ios": "4.6.3", | ||
"@react-native-community/cli-platform-android": "4.6.3", | ||
"@react-native-community/cli": "^3.1.0", |
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.
Are there issues with the the newer version of RNCLI?
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.
4.x has a peer dependency on RN 62, the test apps are on 61 so it generated bunch of warnings in yarn install
. 3.x is probably a better match for RN 61.
I think there's no need to prolong this PR. Thanks for all the work @kaiguo 💪 🎉 |
@krizzu thanks for merging this in. I'm trying to use the module in another project and just noticed the changes haven't been published yet, do we know when the next release will be? |
@kaiguo I'm going to issue new release later today |
Summary:
Add Windows AsyncStorage.
Closes microsoft/react-native-windows#2271.
Test Plan:
yarn start:windows
.example/windows/AsyncStorageExample.sln
with VisualStudio and run.