com.linecorp.android.feature-flag
Owner: LINE_OSS
A Gradle plugin to achieve feature flag based development for Android applications.
https://github.com/line/feature-flag-android
Sources: https://github.com/line/feature-flag-android.git
Version 3.1.0 (latest)
3.1.0
Created 07 February 2024.
A Gradle plugin to achieve feature flag based development for Android applications.
Using the plugins DSL:
plugins {
id("com.linecorp.android.feature-flag") version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.linecorp.android:com.linecorp.android.feature-flag:3.1.0")
}
}
apply(plugin = "com.linecorp.android.feature-flag")
Using the plugins DSL:
plugins {
id "com.linecorp.android.feature-flag" version "3.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.linecorp.android:com.linecorp.android.feature-flag:3.1.0"
}
}
apply plugin: "com.linecorp.android.feature-flag"