com.osacky.fulladle
Owner:
Nelson Osacky
Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank
https://github.com/runningcode/fladle
Version 0.17.4 (latest)
Created 29 May 2022.
Easily Scale your Android Instrumentation Tests with Firebase Test Lab with Flank
Using the plugins DSL:
plugins {
id("com.osacky.fulladle") version "0.17.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.osacky.flank.gradle:fladle:0.17.4")
}
}
apply(plugin = "com.osacky.fulladle")
Using the plugins DSL:
plugins {
id "com.osacky.fulladle" version "0.17.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.osacky.flank.gradle:fladle:0.17.4"
}
}
apply plugin: "com.osacky.fulladle"