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