如何在 Android Studio 中设置 Google Maps Utility Api?
How to set up Google Maps Utility Api in Android Studio?
我不知道为什么我想不通。我正在尝试添加 google 开发者博客 建议的 android_maps-utils library in the android studio.I have seen this link。但我无法理解他们建议的方式。
任何人都可以逐步指导我在 Android Studio 中使用 android-maps-utils 作为库吗?我已经卡了两天了。提前致谢。
关于 google 建议的 link 是如何包含它的所有内容。如果您使用 Android Studio(正如我在您 tags
中看到的那样):
将此行添加到您的 build.gradle
dependencies {
compile 'com.google.maps.android:android-maps-utils:0.3+'
}
然后在右上角你会看到文字sync now
,所以按下它。
见附图。
就是这样,在你的 类 之后你可以使用这个库。
您是否已经解决了 多个包名称 的问题?如果是,请省略以下内容。
我看到在您的 "dependencies" 元素中,您有 compile project(':library')
和 compile('com.google.maps.android:android-maps-utils:0.3.4')
。 :library
是 google 地图实用程序库吗?如果是,那么您添加了两次 google 映射实用程序依赖项,这导致了问题。
我不知道为什么我想不通。我正在尝试添加 google 开发者博客 建议的 android_maps-utils library in the android studio.I have seen this link。但我无法理解他们建议的方式。
任何人都可以逐步指导我在 Android Studio 中使用 android-maps-utils 作为库吗?我已经卡了两天了。提前致谢。
关于 google 建议的 link 是如何包含它的所有内容。如果您使用 Android Studio(正如我在您 tags
中看到的那样):
将此行添加到您的 build.gradle
dependencies {
compile 'com.google.maps.android:android-maps-utils:0.3+'
}
然后在右上角你会看到文字sync now
,所以按下它。
见附图。
就是这样,在你的 类 之后你可以使用这个库。
您是否已经解决了 多个包名称 的问题?如果是,请省略以下内容。
我看到在您的 "dependencies" 元素中,您有 compile project(':library')
和 compile('com.google.maps.android:android-maps-utils:0.3.4')
。 :library
是 google 地图实用程序库吗?如果是,那么您添加了两次 google 映射实用程序依赖项,这导致了问题。