com.contentsquare.error.analysis.network
Owner: Contentsquare
Collect network data through code instrumentation
https://docs.contentsquare.com/en/android/error-analysis/#adding-the-gradle-plugin
Sources: https://github.com/ContentSquare/cs-android-sdk
Version 1.5.0 (latest)
1.5.0
Created 18 October 2024.
Collect network data through code instrumentation
Using the plugins DSL:
plugins {
id("com.contentsquare.error.analysis.network") version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.contentsquare.gradle:error-analysis-network:1.5.0")
}
}
apply(plugin = "com.contentsquare.error.analysis.network")
Using the plugins DSL:
plugins {
id "com.contentsquare.error.analysis.network" version "1.5.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.contentsquare.gradle:error-analysis-network:1.5.0"
}
}
apply plugin: "com.contentsquare.error.analysis.network"