我正在构建Flutter应用程序;由于我需要热图功能,而该功能尚未在官方软件包中提供,因此我想使用this fork。
包导入是通过pubspec.yaml
的这种方式进行的:
google_maps_flutter:
git:
url: git://github.com/arok/plugins.git
ref: implement_google_maps_flutter_heatmap
path: packages/google_maps_flutter
正如您在the latest CI build report上看到的那样,Android APK已成功构建并且可以正常运行(在模拟器和智能手机上均可)。但是,iOS构建因以下原因而失败:
CocoaPods could not find compatible versions for pod "google_maps_flutter":
In Podfile:
google_maps_flutter (from `.symlinks/plugins/google_maps_flutter/ios`)
这就是为什么我想知道CocoaPods在哪里支持GitHub托管软件包的原因(并且在Mac上不工作没有帮助)。
有没有办法让我的CI使用自定义google_maps_flutter
依赖项来构建iOS应用程序?