Search Gradle plugins

com.typelead.eta.android

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.5.8

0.5.8

Created 20 April 2018.

The official Android Gradle plugin for the Eta programming language. This plugin should be used to build Android applications with Eta.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.typelead.eta.android") version "0.5.8"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.typelead:gradle-eta:0.5.8")
      }
    }
    
    apply(plugin = "com.typelead.eta.android")
  • Applying plugins to all subprojects .