我知道这个问题曾在这里被问过几次,但是我从他们给出的答案中试过的一切都不适合我。
另外我需要提一下,我已经尝试了文件 - Invilidate缓存和重启,它没有用..
这是我的构建gradle(可能是错误的):
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.dusandimitrijevic.geomondo"
minSdkVersion 19
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'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:+'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.github.manuelpeinado.fadingactionbar:fadingactionbar:3.1.2'
}
答案 0 :(得分:1)
我看到三个问题。
targetSdkVersion
高于compileSdkVersion
。修复方法是将compileSdkVersion
设置为23.那应该修复丢失的符号问题。