搜索Gradle插件

com.typelead.eta.android

所有者: Eta编程语言

Eta编程语言的官方Android Gradle插件。应使用此插件使用Eta构建Android应用程序。

https://github.com/typelead/gradle-eta

来源: https://github.com/typelead/gradle-eta

版本 0.8.1(最新版本)

0.8.1

创建于 2019年6月2日。

Eta编程语言的官方Android Gradle插件。应使用此插件使用Eta构建Android应用程序。

使用 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"

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