com.osacky.fladle
Owner: Nelson Osacky
The Gradle Plugin for Flank
https://github.com/runningcode/fladle
Sources: https://github.com/runningcode/fladle
Version 0.11.0
0.11.0
Created 24 July 2020.
Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank
Using the plugins DSL:
plugins {
id("com.osacky.fladle") version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.osacky.flank.gradle:fladle:0.11.0")
}
}
apply(plugin = "com.osacky.fladle")
Using the plugins DSL:
plugins {
id "com.osacky.fladle" version "0.11.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.osacky.flank.gradle:fladle:0.11.0"
}
}
apply plugin: "com.osacky.fladle"