You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do flutter clean and build, but still have this error
Describe the bug
It shows a list of errors during a compilation, see snippet below.
Platform
Android
[] iOS
[] Web
[] Desktop (Go)
Platform OS version
What version did it happen? macOS 11.4 flutter 2.2.2
How are you picking?
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource linking failed
/Users/dariocavada/WorkingDirectory/github/mdg-caritro/app/aboxviewer/build/file_picker/intermediates/library_manifest/debug/AndroidManifest.xml:9:5-15:15: AAPT: error: unexpected element <queries> found in <manifest>.
* 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 23s
Running Gradle task 'assembleDebug'...
Running Gradle task 'assembleDebug'... Done 25,2s
The build failed likely due to AndroidX incompatibilities in a plugin. The tool is about to try using Jetifier to solve the incompatibility.
Building plugin file_picker...
Running Gradle task 'assembleAarRelease'...
Running Gradle task 'assembleAarRelease'... Done 1.892ms
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:10: error: cannot find symbol
import androidx.lifecycle.DefaultLifecycleObserver;
^
symbol: class DefaultLifecycleObserver
location: package androidx.lifecycle
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:20: error: cannot find symbol
import io.flutter.embedding.engine.plugins.lifecycle.FlutterLifecycleAdapter;
^
symbol: class FlutterLifecycleAdapter
location: package io.flutter.embedding.engine.plugins.lifecycle
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:38: error: cannot find symbol
implements Application.ActivityLifecycleCallbacks, DefaultLifecycleObserver {
^
symbol: class DefaultLifecycleObserver
location: class FilePickerPlugin
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:45: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:49: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:53: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:57: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:61: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:66: error: method does not override or implement a method from a supertype
@Override
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:277: error: cannot find symbol
this.lifecycle = FlutterLifecycleAdapter.getActivityLifecycle(activityBinding);
^
symbol: variable FlutterLifecycleAdapter
location: class FilePickerPlugin
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:278: error: incompatible types: FilePickerPlugin.LifeCycleObserver cannot be converted to LifecycleObserver
this.lifecycle.addObserver(this.observer);
^
/Users/dariocavada/.pub-cache/hosted/pub.dartlang.org/file_picker-3.0.2+2/android/src/main/java/com/mr/flutter/plugin/filepicker/FilePickerPlugin.java:287: error: incompatible types: FilePickerPlugin.LifeCycleObserver cannot be converted to LifecycleObserver
this.lifecycle.removeObserver(this.observer);
^
Note: Some messages have been simplified; recompile with -Xdiags:verbose to get full output
12 errors
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileReleaseJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
* 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 1s
Details to reproduce the issue
Provide all the details to reproduce the issue.
Error Log
Please, post the full console log of your issue, if applicable.
Screenshots and/or video
If applicable, add screenshots or video to help explain your problem.
Flutter Version details
Please, post the output of your flutter doctor -v, preferably, while running the issued device/simulator.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Do flutter clean and build, but still have this error
Describe the bug
It shows a list of errors during a compilation, see snippet below.
Platform
Platform OS version
What version did it happen?
macOS 11.4
flutter 2.2.2
How are you picking?
Details to reproduce the issue
Provide all the details to reproduce the issue.
Error Log
Please, post the full console log of your issue, if applicable.
Screenshots and/or video
If applicable, add screenshots or video to help explain your problem.
Flutter Version details
Please, post the output of your
flutter doctor -v
, preferably, while running the issued device/simulator.Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: