[SOLVED] Flutter : Duplicate class com.google.common.util.concurrent.ListenableFuture found in modules guava-20.0.jar

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Problem Solution Step 1. Added implementation ‘com.google.guava:guava:27.0.1-android’ at the end of my android/app/build.gradle file and the error went away. Source:- Stackoverflow Step 2. Run flutter clean, flutter pub get and run your project. That’s all. I hope it fixed your error. Keep Coding.

Read more

[SOLVED] Flutter : AAPT: error: unexpected element <queries> found in <manifest>.

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now The Android Gradle Plugin needs to know about new manifest elements, particularly for the manifest merger process. The plugin has a tendency to get confused if it sees elements in the manifest merger that it does not recognize, tossing out build errors like the one in the question. In this case, Android 11 was

Read more

Flutter Bottom Navigation Bar

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now In your main.dart First return a MaterialApp in your build method In the next page or on the same page initialize a new stateful widget with the same name you assigned in your body of the MaterialApp

Read more