英文:
ERROR: The value of attribute "android:value" associated with an element type "meta-data" must not contain the '<' character
问题
Execution failed for task ':app:processDebugMainManifest'.
com.android.manifmerger.ManifestMerger2$MergeFailureException: Error parsing D:\Skripsi\StoryAppFinal\app\src\main\AndroidManifest.xml
- Try:
使用 --stacktrace 选项运行以获取堆栈跟踪。
使用 --info 或 --debug 选项运行以获取更多日志输出。
使用 --scan 运行以获取完整的洞察信息。
我期望干净的项目并且构建项目不出错
我的Android清单文件
AndroidManifest.xml
英文:
Execution failed for task ':app:processDebugMainManifest'.
> com.android.manifmerger.ManifestMerger2$MergeFailureException: Error parsing D:\Skripsi\StoryAppFinal\app\src\main\AndroidManifest.xml
- Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
im expect clean project and build project not eror
my android manifest
AndroidManifest.xml
答案1
得分: 1
你忘记在元数据标签中添加 API 密钥。
android:value = "<<YOUR_API_KEY>>"
在这里。
用你的 API 密钥替换它。
英文:
You forgot to add api key in the meta-data tag
android:value = "<<YOUR_API_KEY>>"
HERE.
Replace it with your api key
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论