io.github.zbynek.firebase
Owner: Zbynek Konecny
Plugin for Android Test Lab, compatible with Gradle 8
https://github.com/zbynek/FirebaseTestLab-Android
Sources: https://github.com/zbynek/FirebaseTestLab-Android.git
Version 2.6.5 (latest)
2.6.5
Created 12 April 2024.
Plugin for Android Test Lab, compatible with Gradle 8
Using the plugins DSL:
plugins {
id("io.github.zbynek.firebase") version "2.6.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.zbynek.firebase:plugin:2.6.5")
}
}
apply(plugin = "io.github.zbynek.firebase")
Using the plugins DSL:
plugins {
id "io.github.zbynek.firebase" version "2.6.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.zbynek.firebase:plugin:2.6.5"
}
}
apply plugin: "io.github.zbynek.firebase"