升级android studio到3.4.1,Sdk Build-Tools 到29,项目编译没有问题,但是运行报错,报错信息:
Android resource linking failed
error: resource andorid:style/Theme.AppCompat.Light.DarkActionBar not found.
error: resource andorid:style/ThemeOverlay.AppCompat.Dark.ActionBar not found.
error: resource andorid:style/ThemeOverlay.AppCompat.Light not found.
error: resource andorid:style/Theme.AppCompat.Light.Dialog.Alert not found.
error: failed linking references.
查找解决办法,以下都没有生效:
- Build-->Clean Project
- Build-->Rebuild Project
- 重新同步Gradle
- 清空Android Studio缓存 "File"---->"Invalidated cache"---->"Invalidate and Restart"
- 升级SDK Manager
- 添加AppCompat依赖
dependencies { implementation 'com.android.support:appcompat-v7:28.0.0' }
(注:我这里其实之前就已经有添加了,所以这个不适用,不过好像有人因为之前没有添加,添加后就好了)
-
先移除对V7包的依赖,同步后再重新添加依赖(移除implementation 'com.android.support:appcompat-v7:x.x.x' ,然后同步后在添加回来)。此方法原文链接:https://blog.csdn.net/lkjfyy/article/details/87890675
以上都没有生效后,发现一篇文章(https://blog.csdn.net/hnjcxy/article/details/53084083),看到里面这句话:SDK更新之后,主题的目录可能在新版本里面有变化,所以出现了找不到的问题,顺着这个思路,我找到styles文件,报错中的4处错误都在这里:
既然找不到,我就尝试修改,最终发现打完@后,直接出现“style”,不用加“android:”,于是将这4个错误中的android:全部删除,然后就好了。