gpt4 book ai didi

sqlite - React Native App中的iCloud和Google Drive集成

转载 作者:行者123 更新时间:2023-12-03 17:51:31 29 4
gpt4 key购买 nike

我正在尝试将iCloud和Google Drive集成到React Native App中。应用程序基本上将用户文档存储在SQLite中。每个文档都有几个字符串,最多2张图像。我想将它们作为云备份上传到iOS中的iCloud和Google Drive和Android中的Google Drive,如果删除了应用程序,可以将其恢复。

到目前为止,我找不到执行这些功能的任何适当的文档,SDK或第三方库。我发现的所有第三方库都已经过了几年并且没有维护。

大家能否分享一些资源或教程的链接。我已经搜寻了几天,但最近找不到任何东西。

最佳答案

您可以使用以下RN第三方软件包来实现它。

对于icloud RN icloud sync

对于Google驱动器RN Google Drive sync

copyToiCloud

const sourceUri = {uri: 'https://example.com/bar.pdf'};
const destinationPath = "/docs/info.pdf";
const mimeType = null;
const scope = 'visible';

RNCloudFs.copyToCloud({
sourcePath: sourceUri,
targetPath: destinationPath,
mimeType: mimeType,
scope: scope
})
.then((path) => {
console.log("it worked", path);
})
.catch((err) => {
console.warn("it failed", err);
})


Google Drive Api

 const contents = "My text file contents";
// or
const contents = [10, 20, 30];


GDrive.files.createFileMultipart(
contents,
"corresponding mime type", {
parents: ["root"],
name: "My file"
},
isBase64);


有关更多信息,请在链接上进行检查。因为我不在使用这些api

关于sqlite - React Native App中的iCloud和Google Drive集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57651694/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com