- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
构建flutter项目时出现以下错误:
*评估项目“:firebase_ml_vision”时出现问题。
Could not find the firebase_core FlutterFire plugin, have you added it as a dependency in your pubspec*
dependencies:
flutter:
sdk: flutter
get: ^3.24.0
firebase_ml_vision: ^0.11.0
image_picker: ^0.6.3+4
image_cropper: 1.0.2
build.gradle(应用程序):
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 30
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.grobonet"
minSdkVersion 16
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
build.gradle(项目)
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath 'com.google.gms:google-services:4.3.5'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
最佳答案
添加 firebase_core
到您的项目。
关于flutter - 构建 Flutter 项目时显示的 firebase_core FlutterFire 插件错误找不到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66905093/
cloud_firestore:^0.14.4firebase_auth: ^0.18.4+1smooth_star_rating: ^1.0.4地理点:^0.7.1geoflutterfire: ^
我已经被 flutter core 的构建错误困扰了好几天。这是 iOS 版本,到目前为止还没有尝试过 android,因为如果我不能让 iOS 运行也没关系:) Running Xcode buil
我在构建移动/android flutter 应用程序时遇到了这个问题,请帮助: [ +271 ms] > Configure project :firebase_core [ ] Ev
我在构建移动/android flutter 应用程序时遇到了这个问题,请帮助: [ +271 ms] > Configure project :firebase_core [ ] Ev
刚刚创建了一个新的 flutter 项目,将 google-services-info.plist 文件添加到 iOS,并将 firebase_core 添加到 pubspec.yaml。运行项目并收
我一直在尝试在 IOS 设备上运行我的 Flutter 代码。但是,我在 Framework 模块中遇到了一些关于非模块化 header 的错误。 日志: While building module
构建flutter项目时出现以下错误: *评估项目“:firebase_ml_vision”时出现问题。 Could not find the firebase_core FlutterFire pl
当使用 Firebase 插件并开始构建 Android 时,出现以下错误: ERROR: Failed to resolve: com.google.firebase:firebase-core:
错误描述 我在 Windows 桌面上运行我的 flutter 应用程序 我在 android studio 中使用主 channel 以便在桌面上运行它。 我已将 firebase 集成到我的应用程
根据 FlutterFire文档,我已经将我的 Flutter 项目更新到 Flutter 2。 我已将我的项目转换为 flutter channel 测试版 和依赖更新如下: 不幸的是,我收到以下错
当我在 Debug模式下运行我的应用程序时,它会连接到 firebase 并工作。没有问题。但是当我在 Release模式下运行它时,我收到以下错误并且应用程序根本没有打开。 MissingPlugi
调用 Firebase.initializeApp() 时出现上述错误在我的 flutter 代码中。 我已经按照这里的文档:https://firebase.flutter.dev/docs 这是我
在 iOS 上向我的 Flutter 应用添加对 Firebase 的支持时,出现以下异常: Terminating app due to uncaught exception 'com.fireba
我是一名优秀的程序员,十分优秀!