You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We reuse the same user-visible number if we discover bugs before pushing to production, but this makes all of our datadog dashboards extremely confusing to use.
We'd like to be able to provide our version code as the datadog version, rather than the user-visible version string.
The text was updated successfully, but these errors were encountered:
Thanks -- from the code, it looked like we should have been able to pass in an attribute called "_dd.version" and have that used instead of what the PackageManager reports
Yes indeed that workaround will work, you just need to make sure you change also the version in the gradle plugin when uploading your Proguard/R8 mapping files, with the following snippet :
Currently, the datadog SDK seems to be looking up our version number from the PackageManager: https://github.com/DataDog/dd-sdk-android/blob/4be13fb69720ba54a7d61284816fb8a91ed75d19/dd-sdk-android-core/src/main/kotlin/com/datadog/android/core/internal/CoreFeature.kt#L314C34-L314C59
We reuse the same user-visible number if we discover bugs before pushing to production, but this makes all of our datadog dashboards extremely confusing to use.
We'd like to be able to provide our version code as the datadog version, rather than the user-visible version string.
The text was updated successfully, but these errors were encountered: