搜索Gradle插件

版本 1.3.0(最新版)

1.3.0

创建于2021年8月23日。

将.env文件用于您的Android应用的Android gradle插件

使用plugins DSL

plugins {
  id("earth.levi.dotenv-android") version "1.3.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("earth.levi:dotenv:1.3.0")
  }
}

apply(plugin = "earth.levi.dotenv-android")

使用plugins DSL

plugins {
  id "earth.levi.dotenv-android" version "1.3.0"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "earth.levi:dotenv:1.3.0"
  }
}

apply plugin: "earth.levi.dotenv-android"

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