Android Studio 错误:AAPT:错误:资源样式/主题.应用程序兼容.轻型.无操作栏

juzqafwq  于 2022-11-16  发布在  Android
关注(0)|答案(1)|浏览(904)

我在项目生成时遇到问题。
我正在使用techno flutter。我正在使用Windows 11上的Android-Studio。
错误为:

* What went wrong:
Execution failed for task ':app:processDebugResources'.
> A failure occurred while executing com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction
   > Android resource linking failed
     ERROR:AAPT: error: resource style/Theme.AppCompat.light.NoActionBar (aka com.example.nysos:style/Theme.AppCompat.light.NoActionBar) not found.
     error: failed linking references.

我已经清除了我的Gradle缓存,使用了flutter clean,文件〉无效缓存〉清除文件系统缓存和本地历史〉无效并重新启动。
你能帮我修正这个错误吗?

k75qkfdt

k75qkfdt1#

在Android Studio中:

  1. CTRL+SHIFT+F组合键
    1.在搜索栏中输入:AppCompat
    1.将Theme.AppCompat.light.NoActionBar更改为Theme.AppCompat.Light.NoActionBar
    1.在flutter/android/app/build.gradleflutter/android/build.gradle中验证您的版本,它应该可以工作。

相关问题