apptreesoftware / flutter_google_map_view

A flutter plugin for Google Maps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dependencies error

eddynaka opened this issue · comments

I just installed the plugin but can't run without removing tests dependencies.

I had to do something like this:

  flutter:
    sdk: flutter
  map_view: ^0.0.14

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2

#dev_dependencies:
#  flutter_test:
#    sdk: flutter```

Is that correct?

map_view depends on "uri", and "uri" depends on older version of quiver. this cause version resolving conflict.

This is duplicated #103

I fixed the issue for now. I had to fork both repositories , this one and uri.dart , and also I made some changes in the mapviewcontroller (imports) and podspecs , if you want to try:

 map_view:
    git: https://github.com/diegoveloper/flutter_google_map_view.git

@diegoveloper any idea when this will be added to the master?

No idea :/ , you could use my fork for now. I know that flutter team is working on inline mapview feature.

@diegoveloper thanks. I am for now.

Thanks for the fork @diegoveloper - hoping we see a fix for the main repo soon.

Check this out, maybe this will solve your issue
#115