AGPBI: {"kind":"error","text":"error: resource string/help (aka com.example.attendances:string/help) not found.","sources":
时间: 2023-09-19 18:07:46 浏览: 72
使用本地aar依赖出现AGPBI: {“kind”:”error”,”text”:”Program type already present: 问题
5星 · 资源好评率100%
[{"file":"/Users/username/AndroidStudioProjects/MyApplication/app/src/main/res/layout/activity_main.xml","position":{"startLine":4,"startColumn":4,"startOffset":109,"endLine":4,"endColumn":95,"endOffset":190},"original":""}]}
This error message indicates that the resource string "help" cannot be found in the specified file path. The file path provided is "/Users/username/AndroidStudioProjects/MyApplication/app/src/main/res/layout/activity_main.xml".
This error might occur due to a few reasons:
1. The resource string "help" might not have been defined in the strings.xml file.
2. The resource string "help" might have been defined in a different file, and it might not have been correctly referenced in the activity_main.xml file.
To resolve this error, make sure that the resource string "help" is defined in the strings.xml file and that it is correctly referenced in the activity_main.xml file.
阅读全文