我怎么知道android gradle插件的applicationVariants中的属性?

前端之家收集整理的这篇文章主要介绍了我怎么知道android gradle插件的applicationVariants中的属性?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在使用带有gradle插件Android Studio来开发应用程序.我在DSL Reference上学习了一些android gradle插件用法.但我发现有一件事是doc上的applicationVariants部分很难理解.它只给出了这样的描述:

DomainObjectSet

The list of Application variants. Since the collections is built after evaluation,it should be used with Gradle’s all iterator to process future items.

但是ApplicationVariant中的属性是什么?我不知道.我没有找到任何引用链接来描述ApplicationVariant.

仅限于页面底部的Gradle Plugin User Guide.它记录了applicationVariants,libraryVariants和testVariants中的可用属性.但我发现其中一些属性已被弃用了很长时间,而且Android没有更新此页面.

那么我在哪里可以找到ApplicationVariant中最新的属性

最佳答案
https://android.googlesource.com/platform/tools/build/+/8dca86a/gradle/src/main/groovy/com/android/build/gradle/internal/ApplicationVariant.groovy

我也很难找到它.这是它移动的界面:
它还将包含您在风格中定义的任何道具,例如versionName,applicationId等

public interface ApplicationVariant {
    String getName()
    String getDescription()
    String getDirName()
    String getBaseName()
    VariantConfiguration getConfig()
    boolean getZipAlign()
    boolean isSigned()
    boolean getRunProguard()
    FileCollection getRuntimeClasspath()
    FileCollection getResourcePackage()
    Compile getCompileTask()
    List

并打印任何对象的道具:

def filtered = ['class','active']

println theObject.properties
            .sort{it.key}
            .collect{it}
            .findAll{!filtered.contains(it.key)}
            .join('\n')
原文链接:https://www.f2er.com/android/430774.html

猜你在找的Android相关文章