我遇到了一个非常罕见的问题。一切都很完美,突然之间我就不能再编译'com.google.maps.android:android-maps-utils:0.5.+‘了。
我无法找到修复它的方法,所以我将Android Studio更新到版本3.0.1,创建了一个新项目,并尝试编译此依赖项。我的其他依赖项不会导致任何问题,但这个依赖项给出了错误消息:
Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.google.maps.android:android-maps-utils:0.5.+.
Could not find any version that matches com.google.maps.android:android-maps-utils:0.5.+.
Versions that do not match:
0.5
0.4.4
0.4.3
0.4.2
0.4.1
+ 9 more
Required by:
project :app*有谁有办法解决这个问题吗?
发布于 2018-01-10 23:48:38
没有与maputils的0.5.+模式匹配的版本。请改用implementation 'com.google.maps.android:android-maps-utils:0.5'。
https://stackoverflow.com/questions/48191083
复制相似问题