com.typelead.eta.android
Owner: Eta Programming Language
The official Android Gradle plugin for the Eta programming language. This plugin should be used to build Android applications with Eta.
https://github.com/typelead/gradle-eta
Sources: https://github.com/typelead/gradle-eta
Version 0.8.1 (latest)
0.8.1
Created 02 June 2019.
The official Android Gradle plugin for the Eta programming language. This plugin should be used to build Android applications with Eta.
Using the plugins DSL:
plugins {
id("com.typelead.eta.android") version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.typelead:gradle-eta:0.8.1")
}
}
apply(plugin = "com.typelead.eta.android")
Using the plugins DSL:
plugins {
id "com.typelead.eta.android" version "0.8.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.typelead:gradle-eta:0.8.1"
}
}
apply plugin: "com.typelead.eta.android"