构建应用程序时出现 Flutter 命名空间错误

问题描述 投票:0回答:1

在调试模式下在为 x86 构建的 Android SDK 上启动 lib\main.dart...

失败:构建失败并出现异常。

  • 出了什么问题: 配置项目“:flutter_blue”时出现问题。

无法创建 com.android.build.api.variant.impl.LibraryVariantBuilderImpl 类型的实例。 未指定命名空间。在模块的构建文件中指定命名空间。有关设置命名空间的信息,请参阅 https://d.android.com/r/tools/upgrade-assistant/set-namespace

 If you've specified the package attribute in the source AndroidManifest.xml, you can use the AGP Upgrade Assistant to migrate to the namespace value in the build file. Refer to https://d.android.com/r/tools/upgrade-assistant/agp-upgrade-assistant for general information about using the AGP Upgrade Assistant.
  • 尝试:

使用 --stacktrace 选项运行以获取堆栈跟踪。 使用 --info 或 --debug 选项运行以获得更多日志输出。 使用 --scan 运行以获得完整的见解。 在 https://help.gradle.org 获取更多帮助。

1秒内构建失败 错误:Gradle 任务 assembleDebug 失败,退出代码为 1

退出 (1)。

我正在尝试使用 flutter blue 在我的应用程序上添加蓝牙

namespaces
1个回答
0
投票

请勿使用 flutter_blue、flutter_blue_serial 以及任何显示上述错误的依赖项。其中一些已经三年没有更新了。您应该使用适当的替代方案。如果您使用 BLE,我推荐 flutter_blue_plus。对于经典版,请使用 flutter_blue_serial。

© www.soinside.com 2019 - 2024. All rights reserved.