com.osacky.fulladle
Owner: Nelson Osacky
Easily Scale your Android Instrumentation Tests with Firebase Test Lab with 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.fulladle") 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.fulladle")
Using the plugins DSL:
plugins {
id "com.osacky.fulladle" 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.fulladle"