错误:(11,40)错误:包android.support.v7.internal.view不存在
错误:(30,25)错误:找不到符号类ContextThemeWrapper
我得到了那个错误,即使在我的gradle中我也包含了这个错误。解决办法是什么?不是一个奇怪的错误?由于这个错误而烦人,我无法运行我的应用程序。我的libs文件夹中也没有jar。
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}
答案 0 :(得分:8)
appcompat-v7:23.1.1
发生了变化,包android.support.v7.internal.view
中的一些元素已移至android.support.v7.view
。更改导入可能会解决问题。
有关详细信息,请查看this answer
或者只需在appcompat-v7
23.0.1
回滚到build.gradle
即可
希望它有所帮助!!