我正在尝试编写一个简单的程序,该程序涉及使用PlacePicker
来捕获位置信息。但是,我的项目似乎无法解决必要的进口问题。
build.gradle
:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.google.android.gms:play-services-location:9.2.0'
compile 'com.google.android.gms:play-services-maps:9.2.0'
}
的活动:
import com.google.android.gms.location.places.Place; // "Place" is not resolved
import com.google.android.gms.location.places.ui.PlacePicker; // "ui" is not resolved
import com.google.android.gms.maps.model.LatLng;
LatLng
导入似乎有效,但不是其他两个。当我导入完整的com.google.android.gms:play-services:9.2.0
API时,整个项目运行正常,但我想使用特定的API调用来减少不必要的库。
答案 0 :(得分:61)
在播放服务9.2.0
中,places
API不再位于location
中。那些现在属于他们自己的places
依赖。要解决这些问题,您应该将其添加到build.gradle
。
compile 'com.google.android.gms:play-services-places:9.2.0'
已经回答here