com.contentsquare.error.analysis.network
所有者: Contentsquare
通过代码安装收集网络数据
https://docs.contentsquare.com/en/android/error-analysis/#adding-the-gradle-plugin
来源: https://github.com/ContentSquare/cs-android-sdk
使用 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"