当前位置: 首页 > 知识库问答 >
问题:

Android Gradle插件:属性“application id”没有用输入或输出注释注释

厍浩广
2023-03-14

然后,当我在gradle.properties中设置org.gradle.warning.mode=all时,我会在:app:generatesafeargsdebug任务中得到以下内容:

属性applicationid未使用输入或输出注释进行注释。这种行为已经被否决,并计划在7.0级中删除。

属性ApplicationIDResource未使用输入或输出批注进行批注。这种行为已经被否决,并计划在7.0级中删除。

共有1个答案

暨承平
2023-03-14

“AndroidX.navigation:navigation-safe-args-gradle-plugin”是导致“app:generatesafeargsdebug”任务的原因。

通过升级它(例如,升级到2.3.1版本),这些警告将消失。

其他警告将提出:

WARNING: DSL element 'android.dataBinding.enabled' is obsolete and has been replaced with 'android.buildFeatures.dataBinding'.
It will be removed in version 5.0 of the Android Gradle plugin.
WARNING: API 'BaseVariant.getApplicationIdTextResource' is obsolete and has been replaced with 'VariantProperties.applicationId'.
It will be removed in version 5.0 of the Android Gradle plugin.
For more information, see TBD.
To determine what is calling BaseVariant.getApplicationIdTextResource, use -Pandroid.debug.obsoleteApi=true on the command line to display more information.
 类似资料:
  • 我是Spring Security的新手。我看过很多关于如何通过外部属性文件的注释注入值的文章。我尝试了很多方法,但最终都是用java。lang.IllegalArgumentException:无法解析占位符“val.id”异常。 你能给我一些提示如何处理这个例外吗? 我的java类如下所示: 我的属性文件名为val.properties,位于WEB-INF下,其内容为val.id=xyz 我将

  • 问题内容: 我有这段代码: 如果我想从Color枚举中接收值(例如:),如何在此函数中的变量中正确添加类型注释? 问题答案: 提示Color类应该工作的类型:

  • 我在上一篇文章中问过这个问题:Spring Security的SpEL:将值从XML传递到基于Java的SpEL配置。但这还没有解决。我想将xml配置或外部文件中的值注入

  • 我有以下课程: 我从控制器调用方法test(): 然而,spring并没有注入构建。版本值,即使类具有组件注释。 我在控制器中使用相同的属性,它工作正常。 我做错了什么?

  • 我试图向自定义注释中注入一个值,但Spring似乎没有进行评估。

  • 我们可以将. sql文件传递或输入到Spring JPA中的查询注释吗? 类似这样的@Query(文件:/sql/employeeList.sql,nativeQuery=true) /sql/employeeList。sql-我想把这个文件放在代码中的某个地方,其中包含select sql。 我不希望有原生sql字符串@查询(“选择abc….”,nativeQuery=true)--我不想这样使