Search Gradle plugins

com.osacky.fulladle

Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank

https://github.com/runningcode/fladle

Sources: https://github.com/runningcode/fladle

Version 0.14.0

Created 20 January 2021.

Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank

Using the plugins DSL:

plugins {
  id("com.osacky.fulladle") version "0.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.osacky.flank.gradle:fladle:0.14.0")
  }
}

apply(plugin = "com.osacky.fulladle")

Using the plugins DSL:

plugins {
  id "com.osacky.fulladle" version "0.14.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.osacky.flank.gradle:fladle:0.14.0"
  }
}

apply plugin: "com.osacky.fulladle"

Learn how to apply plugins to subprojects