搜索Gradle插件

android.environments

所有者: IlyaPavlovskii

Android Environments插件帮助我们避免在每个构建类型或产品风味中手动声明构建配置字段。不再需要为每个字段都编写buildConfigField。

https://github.com/IlyaPavlovskii/Android-Environments/blob/master/README.md

来源:https://github.com/IlyaPavlovskii/Android-Environments

版本 1.0.3(最新版)

1.0.3

创建于2019年8月7日。

Android Environments插件帮助我们避免在每个构建类型或产品风味中手动声明构建配置字段。不再需要为每个字段都编写buildConfigField。

使用 插件DSL

plugins {
  id("android.environments") version "1.0.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("by.bulba.android.environments:android.environments:1.0.3")
  }
}

apply(plugin = "android.environments")

使用 插件DSL

plugins {
  id "android.environments" version "1.0.3"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "by.bulba.android.environments:android.environments:1.0.3"
  }
}

apply plugin: "android.environments"

了解如何将插件应用于子项目