Gradle Config
repositories {
maven { url "https://dl.bintray.com/datadog/datadog-maven" }
}
dependencies {
implementation "com.datadoghq:dd-sdk-android:1.8.0"
// Optionally, if you want Kotlin extensions or Coroutine/Flow integration
implementation "com.datadoghq:dd-sdk-android-ktx:1.8.0"
// Optionally, if you need an Android NDK integration
implementation "com.datadoghq:dd-sdk-android-ndk:1.8.0"
// Optionally, if you need a Coil integration
implementation "com.datadoghq:dd-sdk-android-coil:1.8.0"
// Optionally, if you need a Fresco integration
implementation "com.datadoghq:dd-sdk-android-fresco:1.8.0"
// Optionally, if you need a Glide integration
implementation "com.datadoghq:dd-sdk-android-glide:1.8.0"
// Optionally, if you need a Timber integration
implementation "com.datadoghq:dd-sdk-android-timber:1.8.0"
// Optionally, if you need a RxJava integration
implementation "com.datadoghq:dd-sdk-android-rx:1.8.0"
// Optionally, if you need a SQLDelight integration
implementation "com.datadoghq:dd-sdk-android-sqldelight:1.8.0"
}
Changes
- [BUGFIX] Global: handle correctly incorrect domain names in Interceptors' known hosts
- [BUGFIX] RUM: RUM Context was bundled in spans even when RUM was not enabled
- [FEATURE] Global: Allow user to configure the Upload Frequency (see
Configuration.Builder().setUploadFrequency(…).build()
)
- [FEATURE] Global: Allow user to configure the Batch Size (see
Configuration.Builder().setBatchSize(…).build()
)
- [FEATURE] RUM: Customize Views' name
- [FEATURE] RUM: Send NDK Crash related RUM Error
- [FEATURE] RUM: Track custom timings in RUM Views (see
GlobalRum.get().addTiming("<timing_name>")
)
- [FEATURE] RUM: Provide a PII Data Scrubbing feature (see
Configuration.Builder().setRum***EventMapper(…).build()
)
- [FEATURE] RUM: Send NDK Crash related RUM Error
- [IMPROVEMENT] APM: Stop duplicating APM errors as RUM errors
- [IMPROVEMENT] Logs Align the 'error.kind' attribute value with RUM Error 'error.type'
- [IMPROVEMENT] RUM: Get a more accurate Application loading time
- [IMPROVEMENT] RUM: Add a variant tag on RUM events