0

我的颤振项目在 Firebase ML Vision 0.9.x 上运行良好,如果我尝试升级到 0.10.0(或更高版本),它会产生以下错误:

FAILURE: Build completed with 2 failures.

1: Task failed with an exception.
-----------
* Where:
Build file 'C:\Users\...\Cache\hosted\pub.dartlang.org\firebase_ml_vision-0.10.0\android\build.gradle' line: 26

* What went wrong:
A problem occurred evaluating project ':firebase_ml_vision'.
> Could not find the firebase_core FlutterFire plugin, have you added it as a dependency in your pubspec?

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

2: Task failed with an exception.
-----------
* What went wrong:
A problem occurred configuring project ':firebase_ml_vision'.
> compileSdkVersion is not specified. Please add it to build.gradle

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
==============================================================================

* Get more help at https://help.gradle.org

BUILD FAILED in 889ms
Exception: Gradle task assembleDebug failed with exit code 1

这两个错误中的第一个很奇怪,因为安装说明软件包安装指南都说firebase_core不需要(不再)。

第二个是完全错误的,因为我的应用程序的 build.gradle 指定了compileSdkVersion 30,而 firebase_ml_vision 包的 build.gradle 指定了compileSdkVersion 29.

有什么想法吗?

4

1 回答 1

0

找到一个可行的解决方案:忽略设置说明并添加firebase_core为依赖项。然后,根据此线程添加“实现”以解决“重复类”问题。

于 2021-04-19T09:14:51.180 回答