我在Android Studio中遇到以下错误。
无法在LocationManager.java中解析符号ILocationManager和其他文件,这是一个sdk文件。我正在使用LocationManager来查找我的android库中的纬度和经度。
这是我的库的gradle文件
{apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
minSdkVersion 19
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
testCompile 'junit:junit:4.12'
}
我尝试删除构建gradle文件中的排除组并构建它,但它没有用。
注意:这不仅仅是一个文件,而是sdk的许多其他文件(所以sdk有问题吗?)