skip to Main Content

Android Studio Electric Eel refuses to compile build file google_maps_flutter_android-2.4.2, throws exception

FAILURE: Build failed with an exception. Where: Build file '/Users/sam/StudioProjects/flutter/.pub-cache/hosted/pub.dartlang.org/google_maps_flutter_android-2.4.2/android/build.gradle' What went wrong: Could not compile build file '/Users/sam/StudioProjects/flutter/.pub-cache/hosted/pub.dartlang.org/google_maps_flutter_android-2.4.2/android/build.gradle'. Yikes, wth?! I upgraded Android Studio to Electric Eel, the latest stable release, both the dart and Flutter plugins update and…

VIEW QUESTION

Visual Studio Code – Error while initializing marker in flutter

// ignore_for_file: use_key_in_widget_constructors, prefer_final_fields, prefer_const_constructors, duplicate_ignore, camel_case_types, unnecessary_new, unnecessary_this, unnecessary_null_comparison import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:google_maps_flutter/google_maps_flutter.dart'; import 'package:location/location.dart'; class map extends StatefulWidget { @override State<map> createState() => mapState(); } class mapState extends State<map> { late GoogleMapController _controller; LatLng?…

VIEW QUESTION
Back To Top
Search