搜索Gradle插件

版本 2020.2.5 (最新)

2020.2.5

创建于 2020年2月7日。

由于JCenter成为永久跳转到Maven Central,该插件版本将不再可用,因为它仅使用可在JCenter找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Avito Android Plugin

使用插件DSL

plugins {
  id("com.avito.android.performance") version "2020.2.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.avito.android:performance:2020.2.5")
  }
}

apply(plugin = "com.avito.android.performance")

使用插件DSL

plugins {
  id "com.avito.android.performance" version "2020.2.5"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.avito.android:performance:2020.2.5"
  }
}

apply plugin: "com.avito.android.performance"

了解如何将插件应用于子项目