- 
                Notifications
    You must be signed in to change notification settings 
- Fork 4.1k
Closed
Description
Error list:
Running Gradle task 'assembleDebug'...
Plugin project :firebase_core_web not found. Please update settings.gradle.
Plugin project :firebase_auth_web not found. Please update settings.gradle.
Flutter doctor result:
Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, v1.17.4, on Microsoft Windows [Version 10.0.19041.329], locale en-GB)
[√] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
[√] Android Studio (version 4.0)
[√] Connected device (2 available)
• No issues found!
Fixes attempted:
- Tried changing minSdkVersionfrom 16 to 21.
- In the app level build.gradle added multiDexEnabled truetodefaultConfigand added dependency forandroidx.multidex:multidex:2.0.1.
- Updated settings.gradle to -->
include ':app'
def flutterProjectRoot = rootProject.projectDir.parentFile.toPath()
def plugins = new Properties()
def pluginsFile = new File(flutterProjectRoot.toFile(), '.flutter-plugins')
if (pluginsFile.exists()) {
pluginsFile.withReader('UTF-8') { reader -> plugins.load(reader) }
}
plugins.each { name, path ->
def pluginDirectory = flutterProjectRoot.resolve(path).resolve('android').toFile()
include ":$name"
project(":$name").projectDir = pluginDirectory
}
- Included firebase_core: ^0.4.5in pubspec.yaml and didpub get
The errors still remain the same.
Experts, please advise.
ezone-dev
Metadata
Metadata
Assignees
Labels
No labels