如何解决Android资源链接失败错误(xml/shortcuts)找不到?

fnatzsnv  于 2023-04-18  发布在  Android
关注(0)|答案(1)|浏览(269)

应用程序显示下面的错误应用程序直接运行模拟器或设备方案。但生成apk没有问题发生。已经工作良好,但突然发生了这个问题
执行任务“:app:processPatientDebugResources”失败。
执行com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction Android资源链接失败时发生故障
我尝试更改Kotlin版本,并在android studio选项中使缓存无效,还尝试删除构建文件夹
执行任务“:app:processPatientDebugResources”失败。
执行com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask$TaskAction Android资源链接失败/home/kbytez/project/xxxxxxx/app/build/intermediates/packaged_manifests/patientDebug/AndroidManifest.xml时出现故障:184:错误:资源xml/shortcuts(aka com.xxxxx.patient:xml/shortcuts)not found. /home/kbytez/project/xxxx/app/build/intermediates/packaged_manifest/patientDebug/AndroidManifest.xml:189:错误:未找到资源字符串/app_id_value(aka com.xxxxx.patient:string/app_id_value)。错误:处理清单失败。shortcut available

6rqinv9w

6rqinv9w1#

你想使用快捷方式或不?如果是-检查你是否有shortcuts.xml在res/xml文件夹,如果你有

<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />

在清单文件的<activity>部分中,与在

<action android:name="android.intent.action.MAIN" />

如果没有-检查你的清单,并删除上述代码,如果你有它。

相关问题