ios !CocoaPods找不到配置文件“flutter_webrtc”的兼容版本:

liwlm1x9  于 2023-10-21  发布在  iOS
关注(0)|答案(1)|浏览(164)

我用的是Codemagic,因为我没有Mac。这就是我得到的错误。

[!] CocoaPods could not find compatible versions for pod "flutter_webrtc":
      In Podfile:
        flutter_webrtc (from `.symlinks/plugins/flutter_webrtc/ios`)

    Specs satisfying the `flutter_webrtc (from `.symlinks/plugins/flutter_webrtc/ios`)` dependency were found, but they required a higher minimum deployment target.

在Flutter Windows中,没有Podfile。如何在不使用Mac的情况下解决此错误?
我试着用Ruby和椰子,但它就是不工作。

gpnt7bae

gpnt7bae1#

您可以remote access Codemagic macOS计算机并初始化新文件,然后将更改推送到存储库。
连接后,从终端运行这些命令。例如,这就是初始化pod的方法。

cd ios
pod init
gh auth login --with-token <YOUR_GITHUB_PAT_TOKEN>
git add .
git commit -m "Added Podfile"
git push

为了将更改推送到repo,您需要在git提供程序中验证自己。这是必要的,因为Codemagic只有对GitHub存储库的读取权限。为了使用GitHub进行身份验证,您需要使用GitHub个人访问令牌。查看如何从https://github.com/settings/tokens生成令牌。

相关问题