com.typelead.eta.android
所有者: Eta编程语言
Eta编程语言的官方Android Gradle插件。应使用此插件使用Eta构建Android应用程序。
https://github.com/typelead/gradle-eta
来源: https://github.com/typelead/gradle-eta
使用 plugins DSL
plugins {
id("com.typelead.eta.android") version "0.8.1"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.typelead:gradle-eta:0.8.1")
}
}
apply(plugin = "com.typelead.eta.android")
使用 plugins DSL
plugins {
id "com.typelead.eta.android" version "0.8.1"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.typelead:gradle-eta:0.8.1"
}
}
apply plugin: "com.typelead.eta.android"