com.osacky.fladle
                  Owner:
                  
                    
                    Nelson Osacky
                  
                
The Gradle Plugin for Flank
https://github.com/runningcode/fladle
Sources: https://github.com/runningcode/fladle
Version 0.13.0
Created 01 October 2020.
                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.13.0"
}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.13.0") }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.13.0") } } apply(plugin = "com.osacky.fladle")
- Applying plugins to all subprojects .