Error retrieving parent for item: No resource found that matches the
given name 'Theme.AppCompat'.
build.gradle
styles.xml
AndroidManifest.xml
logcat
答案 0 :(得分:0)
删除supportv4
库并添加:
implementation "com.android.support:support-core-utils:27.1.1"
并且(如果您不这样做的话)将Google的Maven存储库包含在顶级build.gradle
文件中(更多信息here)。
allprojects {
repositories {
google()
// If you're using a version of Gradle lower than 4.1, you must
// instead use:
//
// maven {
// url 'https://maven.google.com'
// }
}
}
还要通过实现编译更新,并确保所有依赖项都更新为最新版本,例如:
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
最后替换样式,然后尝试类似的操作:
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">