Search Gradle plugins

Version 2.2.1

Created 27 May 2020.

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.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.linecorp.android:feature-flag:2.2.1")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects