1

我正在尝试使用Codemagic for iOS编译我的应用程序。在本地,我的环境是:

[√] Flutter (Channel stable, v1.9.1+hotfix.6, on Microsoft Windows [Version 10.0.18363.657], locale en-US)

[√] Android 工具链 - 为 Android 设备开发(Android SDK 版本 28.0.3)

[√] Android Studio(3.5版)

我没有问题可以编译到Android应用程序。但是,当我切换到Codemagic时,我将配置设置为:

Flutter 1.9.1+hotfix.6
Xcode 11.1

我报告了以下错误:

Compiler message:
lib/app/ui/widgets/color_theme_picker_widget.dart:2:8: Error: Error when reading '../programs/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_colorpicker-0.3.2/lib/block_picker.dart': No such file or directory

import 'package:flutter_colorpicker/block_picker.dart';
       ^
lib/app/ui/widgets/color_theme_picker_widget.dart:35:28: Error: Method not found: 'BlockPicker'.
                    child: BlockPicker(
                           ^^^^^^^^^^^
lib/app/ui/widgets/color_theme_picker_widget.dart:35:28: Error: The method 'BlockPicker' isn't defined for the class 'ColorThemePicker'.
 - 'ColorThemePicker' is from 'package:biorhythms/app/ui/widgets/color_theme_picker_widget.dart' ('lib/app/ui/widgets/color_theme_picker_widget.dart').
Try correcting the name to the name of an existing method, or defining a method named 'BlockPicker'.

我将不胜感激任何反馈,谢谢!

4

1 回答 1

1

如果有人遇到类似的问题 - 在我的情况下,这是由我的pubspec.yaml文件中的以下行引起的 -flutter_colorpicker: any因为它加载了最新flutter_colorpicker版本,其中上述文件已被删除。所以基本上,我不得不将代码调整为最新版本。同样作为一般经验法则 - 只需将您的插件/包版本设置为特定版本,例如flutter_colorpicker: ^0.3.2

于 2020-02-29T12:38:49.050 回答