搜索Gradle插件

版本 1.4.0 (最新)

1.4.0

创建于 2024年7月2日。

通过代码安装收集网络数据

使用 plugins DSL

plugins {
  id("com.contentsquare.error.analysis.network") version "1.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.contentsquare.gradle:error-analysis-network:1.4.0")
  }
}

apply(plugin = "com.contentsquare.error.analysis.network")

使用 plugins DSL

plugins {
  id "com.contentsquare.error.analysis.network" version "1.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.contentsquare.gradle:error-analysis-network:1.4.0"
  }
}

apply plugin: "com.contentsquare.error.analysis.network"

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