Skip to content

1.7.0

Compare
Choose a tag to compare
@xgouchet xgouchet released this 04 Jan 15:45
· 3 commits to release/1.7.0 since this release

Release Note

Gradle Config

repositories {
    maven { url "https://dl.bintray.com/datadog/datadog-maven" }
}

dependencies {
    implementation "com.datadoghq:dd-sdk-android:1.7.0"

    // Optionally, if you want Kotlin extensions or Coroutine/Flow integration
    implementation "com.datadoghq:dd-sdk-android-ktx:1.7.0"

    // Optionally, if you need an Android NDK integration
    implementation "com.datadoghq:dd-sdk-android-ndk:1.7.0"

    // Optionally, if you need a Coil integration
    implementation "com.datadoghq:dd-sdk-android-coil:1.7.0"
    // Optionally, if you need a Fresco integration
    implementation "com.datadoghq:dd-sdk-android-glide:1.7.0"
    // Optionally, if you need a Glide integration
    implementation "com.datadoghq:dd-sdk-android-glide:1.7.0"

    // Optionally, if you need a Timber integration
    implementation "com.datadoghq:dd-sdk-android-timber:1.7.0"

    // Optionally, if you need a RxJava integration
    implementation "com.datadoghq:dd-sdk-android-rx:1.7.0"

    // Optionally, if you need a SQLDelight integration
    implementation "com.datadoghq:dd-sdk-android-sqldelight:1.7.0"
}

Changes

  • [BUGFIX] RUM: fix RUM Error timestamps
  • [BUGFIX] RUM: calling GlobalRum.addAttribute() with a null value would make the application crash
  • [BUGFIX] RUM: Actions created with type Custom where sometimes dropped
  • [FEATURE] Global: Add support for GDPR compliance feature (see Datadog.setTrackingConsent())
  • [FEATURE] Global: Allow setting custom user specific attributes (see Datadog.setUserInfo())
  • [IMPROVEMENT] Crash Report: Handle SIGABRT signal in the NDKCrashReporter
  • [OTHER] Global: Remove deprecated APIs and warn about future deprecations
  • [OTHER] Global: Remove all flavors from sample (allowing to get faster build times)