Install with CRNA
Step1 - Install
npm install react-native-cloud-store
Step2 - Link
For ReactNative 0.60+
Autolink was used, go to step 3 now
For ReactNative <0.60
npx react-native link react-native-cloud-store
Step3 - Setup
For Android
Not supported
For IOS
Run
npx pod-install
in your project rootOpen your
ios
folder using XCodeBecause this module was written by
swift
, you need to create an empty swift file and a bridge header file in XCode:File
->New
->File
-> Choose 'Swift File' -> Click Next -> save and create file -> XCode will prompt you to create an Objective-C bridging header, select "Create Briding Header"dangerDon't delete the created empty swift file!
If you are not prompt to create a bridging header file, you can manually create a
xxx.h
file and set header location as below (filename does not matter):Next step is add iCloud capability, inside your XCode, select your target ->
Signing & Capabilities
tab -> click "+ Capability" -> search and add "iCloud":Then scroll to iCloud part: if you use key-value storage check
Key-value storage
, if you use iCloud documents checkiCloud Documents
and then select or create a container and make sure the selected container was not in red which means not created, if color was red, just click arrow-7 to refresh:(Optional Step) If you want to make your iCloud container's
Documents
folder visible to user, openInfo.plist
and change as the following:<key>NSUbiquitousContainers</key>
<dict>
<key>[THIS_IS_CONTAINER_ID_YOU_CHECKED_ABOVE]</key>
<dict>
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
<true/>
<key>NSUbiquitousContainerName</key>
<string>[THIS_IS_THE_NAME_SHOWED_IN_ICLOUD_DRIVE]</string>
</dict>
</dict>