com.busbud.android.firely
Owner: Busbud Android
Library to simplify the integration and management of A/B testing
https://github.com/busbud/firely
Sources: https://github.com/busbud/firely
Version 0.3.1 (latest)
0.3.1
Created 25 July 2023.
Library to simplify the integration and management of A/B testing
Using the plugins DSL:
plugins {
id("com.busbud.android.firely") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.busbud:firely-plugin:0.3.1")
}
}
apply(plugin = "com.busbud.android.firely")
Using the plugins DSL:
plugins {
id "com.busbud.android.firely" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.busbud:firely-plugin:0.3.1"
}
}
apply plugin: "com.busbud.android.firely"