Manoel Aranda Neto
Manoel Aranda Neto
https://github.com/getsentry/sentry-android-gradle-plugin/pull/155 for testing AGP 7.0.0 stable version
`com.android.build.gradle.api.ApplicationVariant` is deprecated and should be replaced
`AndroidComponentsExtension` does not exist on AGP 4.x so we have to drop support on 4.x
there's no way to access the object `variant.buildType` using the new API, `variant.buildType` is a String instead of a `BuildType` object, we really need to access the `isMinifyEnabled` and `isDebuggable`...
@romtsn always add to our project board and `needs discussion` please.
the AGP already [generates a file](https://developer.android.com/studio/releases/gradle-plugin#dependency-metadata) with all the dependencies under a text file. it'd be nice if the SAGP picks this file up and make it available to the...
> the file is only available for release builds, so either we choose to send this only for release builds or we implement our own dependency gathering logic its fine...
@cortinico yes, that would be ideal, that would require changes on the backend tho. our protocol already supports it tho thru the event https://develop.sentry.dev/sdk/event-payloads/ via `modules` list. we'll keep that...
Consider creating a troubleshooting for now, before we get this one, so people know why and how to disable the broken instrumentation. https://github.com/getsentry/sentry-docs/issues/4397 but we don't need to address all...
The frontend uses a regex to find out if something is minified or not, https://github.com/getsentry/sentry/blob/b5cc15b4d114fae56880e92f65ccbf4c742135f0/static/app/components/events/eventEntries.tsx#L151-L157= But this solution alone won't help since the false positives may still allow some classes...