Reputation: 61
No implementation found for method camera#animate on channel plugins.flutter.io/google_maps_1 and plugins.flutter.io/google_maps_0 in flutter
I'm reviewing a project in flutter integrating google maps with firebase, when loading the map everything works fine, although a little slow but when closing the activity I get the errors mentioned above. Besides that the device gets very hot, is this normal?
Upvotes: 1
Views: 4188
Reputation: 10473
"No implementation found for method" errors from plugins used are usually caused by either outdated plugin versions or the downloaded plugin not building properly. Running flutter clean
then flutter pub get
should help generate build files again. If that doesn't work, you can try updating the plugin's version.
Upvotes: 1