Search Gradle plugins

Version 2.4.0

Created 27 July 2021.

A Gradle plugin to achieve feature flag based development for Android applications.

Using the plugins DSL:

plugins {
  id("com.linecorp.android.feature-flag") version "2.4.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:2.4.0")
  }
}

apply(plugin = "com.linecorp.android.feature-flag")

Using the plugins DSL:

plugins {
  id "com.linecorp.android.feature-flag" version "2.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.linecorp.android:com.linecorp.android.feature-flag:2.4.0"
  }
}

apply plugin: "com.linecorp.android.feature-flag"

Learn how to apply plugins to subprojects