错误:com.google.maps.android.kml 包不存在
Posted
技术标签:
【中文标题】错误:com.google.maps.android.kml 包不存在【英文标题】:error: package com.google.maps.android.kml does not exist 【发布时间】:2017-06-20 18:02:29 【问题描述】:嗨,我正在使用 android studio,我看到了一个新错误
我已经在我的 Gradle 中使用了它的包:
dependencies
//compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.pnikosis:materialish-progress:1.7'
compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
compile 'com.google.maps.android:android-maps-utils:0.4+'
compile 'com.google.android.gms:play-services:6.5.87'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'uk.co.chrisjenx:calligraphy:2.1.0'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'org.java-websocket:java-websocket:1.3.1'
compile 'com.google.code.gson:gson:2.4'
compile 'com.sothree.slidinguppanel:library:3.2.0'
compile 'com.balysv.materialmenu:material-menu:1.5.4'
compile files('libs/signalr-client-sdk-1.4.jar')
compile(name: 'signalr-client-sdk-android-release-1.4', ext: 'aar')
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.viewpagerindicator:viewpagerindicator:2.4.3'
我已经尝试了人们所说的丢失包裹的所有方法
我试过“文件->无效缓存/....”
尝试更新 sdk
尝试清理和重建
尝试删除所有“iml”文件并删除 .idea 文件夹
尝试重新排序依赖项
尝试使用“动态优化导入”和“动态添加明确导入”
他们都没有工作
我需要帮助
编辑 1:
顺便说一句,这个错误最近出现了。它很好,直到 2 天前才工作。突然出现了这个错误
大约 2 天前。
【问题讨论】:
尝试将您的 google play 服务版本更改为最新版本。版本 6 很旧了 @NayraAhmed:不。没用 经过一番搜索,我找到了链接developers.google.com/maps/documentation/android-api/utility,所以尝试将其添加到您的 gradle 'com.google.maps.android:android-maps-utils:0.5+' @NayraAhmed 感谢朋友,但我的 Gradle 中有 4+ 版本,所以不。没有帮助。无论如何谢谢。 【参考方案1】:尝试将导入更改为:
import com.google.maps.android.data.kml.KmlLayer;
KmlLayer
类在 v0.5 版本中移动。
我还建议在您的 compile
语句中删除 +
,所以它应该如下所示:
compile 'com.google.maps.android:android-maps-utils:0.5'
【讨论】:
以上是关于错误:com.google.maps.android.kml 包不存在的主要内容,如果未能解决你的问题,请参考以下文章