build flutter项目时,提示:

Because every version of integration_test from sdk depends on crypto 3.0.0 and leancloud_storage >=0.0.4 depends on crypto ^2.1.3, integration_test from sdk is incompatible with leancloud_storage >=0.0.4.
So, because xxx depends on both leancloud_storage ^0.6.3 and integration_test any from sdk, version solving failed.
Running "flutter pub get" in xxx...                             
pub get failed (1; So, because xxx depends on both leancloud_storage ^0.6.3
and integration_test any from sdk, version solving failed.)

pubspec.yaml里 leancloud_storage: ^0.6.3

请先 clone SDK 仓库,然后以「工程」方式引入,再手动修改版本号进行适配。
预计 SDK 下个月会发布升级依赖的版本

.Net和Flutter都是你负责呀?好厉害
请问该怎么clone?
在https://github.com/leancloud/Storage-SDK-Flutter这里点download.zip,解压后VSCode里再怎么操作呢?

下载也可以,SDK 引入的方式改成「相对目录」,应用的 pubspec.yaml 配置如下:

dependencies:
  flutter:
    sdk: flutter

  leancloud_storage:
    path: ../Storage-SDK-Flutter

谢谢,提示相对位置不对,尝试过直接放在项目文件夹里(和pubspec.yaml在一起)或者lib文件夹里或和项目文件夹并列都不行,试过../Storage-SDK-Flutter./Storage-SDK-Flutter也都不行。

参考一下 这里2,相对目录(相对于应用的目录)也是可以的

如果是 ../Storage-SDK-Flutter 是和应用同级目录,这里就是相对于 pubspec.yaml 的目录