earth.levi.dotenv-android
所有者: Levi Bostian
将.env文件用于您的Android应用的Android gradle插件
https://github.com/levibostian/dotenv-android
来源: https://github.com/levibostian/dotenv-android
使用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"