搜索 Gradle 插件

版本 2020.2.5 (最新版本)

2020.2.5

创建于 2020年2月7日。

此插件版本将在 JCenter 永久重定向到 Maven Central 后不再解决,因为它只使用在 JCenter 中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 此插件版本将在 JCenter 永久重定向到 Maven Central 后不再解决,因为它只使用在 JCenter 中找到的依赖项。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Avito Android Plugin

使用 plugins DSL

plugins {
  id("com.avito.android.instrumentation-tests-default-config") version "2020.2.5"
}

使用 旧插件应用程序

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

apply(plugin = "com.avito.android.instrumentation-tests-default-config")

使用 plugins DSL

plugins {
  id "com.avito.android.instrumentation-tests-default-config" version "2020.2.5"
}

使用 旧插件应用程序

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

apply plugin: "com.avito.android.instrumentation-tests-default-config"

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