I try to add google map to my flutter app using the map_view plugin. But when I try to build the app I have this error :
*FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:preDebugBuild'.
Android dependency 'com.android.support:support-fragment' has different version for the compile (26.1.0) and runtime (27.1.1) classpath. You should manually set the same version via DependencyResolution*
I follow all instructions in the plugin installation guide, and also generate an API key in the google console for Map android SDK. I added all information in the manifest file : - 2 lines for permissions - 2 lines with metada including one with the API key generated just before on google console - 1 line for activity
I try to build without adding any code regarding the map, normaly I believe that it should work, I mean I configure it but don't import the map in my code, just try to build.
Does anyone have an idea about how to fix that ?