我正在使用GPS定位服务开发Android应用。我昨天能够编译并运行它,但是今天我打开Android Studio并且位置包中的LocationListener
,LocationRequest
,LocationServices
无法导入(它说不能解析符号LocationListener)。
事实上,当我执行 Control + Space 时,我无法看到包的任何类,例如我可以看到类的类com.google.android.gms.common.api
包。
Project build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "gps.example.com.myapplicationgps"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.google.android.gms:play-services:8.4.0'
}
答案 0 :(得分:1)
通过清理和构建项目解决了这个问题。