Search Gradle plugins

Version 2020.2.5 (latest)

2020.2.5

Created 07 February 2020.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Avito Android Plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.avito.android.feature-toggles") version "2020.2.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.avito.android:feature-toggle-report:2020.2.5")
      }
    }
    
    apply(plugin = "com.avito.android.feature-toggles")
  • Applying plugins to all subprojects .