Description
https://develop.sentry.dev/sdk/overview/#authentication
Some method calls don't concatenate the versioning, for example:
options.setSentryClientName(BuildConfig.SENTRY_LOG4J2_SDK_NAME);
It should be:
options.setSentryClientName(BuildConfig.SENTRY_LOG4J2_SDK_NAME + "/" + BuildConfig.VERSION_NAME);
There is more than 1 case like this.
Description
https://develop.sentry.dev/sdk/overview/#authentication
Some method calls don't concatenate the versioning, for example:
options.setSentryClientName(BuildConfig.SENTRY_LOG4J2_SDK_NAME);It should be:
options.setSentryClientName(BuildConfig.SENTRY_LOG4J2_SDK_NAME + "/" + BuildConfig.VERSION_NAME);There is more than 1 case like this.