Manoel Aranda Neto

Results 1021 comments of Manoel Aranda Neto

> Oh, indeed, I just looked up and it looks like this is a [Gradle bug](https://github.com/gradle/gradle/issues/3170) actually. > > Dunno if we should follow the suggested workarounds there @marandaneto or...

@Hanmac That's out of our control, feel free to remove the AndroidX libs, e.g. https://docs.sentry.io/platforms/android/configuration/releases/#androidx-support

We'll add an item to the https://docs.sentry.io/platforms/android/troubleshooting/ page instead of fixing it in the tooling since Maven isn't that popular in the Android world anyway.

Similar to https://github.com/getsentry/sentry-java/issues/909

So Java is already documented correctly https://docs.sentry.io/platforms/java/configuration/options/#ignored-exceptions-for-type Usually, we don't do breaking changes before annotating the method with `@Deprecated` and `@ScheduledForRemoval` so folks have time to migrate before getting a...

> Suggested course of action: Deprecate existing option and add new option Then I guess for 7.0 we can remove the deprecated option. Yes, that's what we always did, example...

@adinauer for me, they look exactly the same (the issue is about the ignoredExceptionsForType method), See code snippet https://docs.sentry.io/platforms/dotnet/usage/#ignoring-errors https://docs.sentry.io/platforms/java/configuration/#ignored-exceptions-for-type

you need to migrate and follow the unified API conventions: https://docs.sentry.io/platforms/android/migration/ you could create your own `Hub` instance, for example. `Hub` doesn't add the default integrations btw, be aware of...

@rrodrigues why would you need `AndroidOptionsInitializer.init` public? Default integrations are supposed to be added only once, by the final App and not a library, otherwise, they would conflict, that's why...

since v4.0.0, there's a default serializer set to the options already, so this is not necessary anymore: `options.setSerializer(new GsonSerializer(options.getLogger(), options.getEnvelopeReader()));` but only: ``` SentryOptions options = new SentryOptions(); options.setDsn(dsn); Hub...