Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看过很多 android 示例,发现所有示例都使用了不同选项的混合,gradle.properties并且他们刚刚在文档中给出了这些链接
gradle.properties
但在文档中,他们从未真正解释如何查看和查找所有可以设置的选项及其默认值
不可能有完整的列表,因为任何插件都可能使用该gradle.properties文件作为其配置源。如您的第一个链接所示,您甚至可以定义可以直接在构建脚本中使用的自定义属性:
junitVersion=4.13.2
构建.gradle
dependencies { testImplementation group: 'junit', name: 'junit', version: junitVersion }