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.2
Created 11 October 2021.
Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank
Add this plugin to your build using the plugins DSL:
plugins {
id("com.osacky.fladle") version "0.17.2"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.osacky.fladle:com.osacky.fladle.gradle.plugin:0.17.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.osacky.fladle") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.osacky.fladle:com.osacky.fladle.gradle.plugin:0.17.2") } } apply(plugin = "com.osacky.fladle")
- Applying plugins to all subprojects .