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
{{ message }}
This repository was archived by the owner on Jun 25, 2019. It is now read-only.
It seems to be common to use the + wildcard when specifying dependencies in flutter plugins (have a look at all the firebase plugins). This plugin currently hardcodes version 11.0.4:
compile 'com.google.android.gms:play-services-maps:11.0.4'
and the app will crash if you're using 11.+ versions otherwise because of some "class not found" errors.
After changing it to
compile 'com.google.android.gms:play-services-maps:11.+'
the crash is gone.