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
fix(android): fix variant capitalization and task timing in sentry.gradle
- Replace v.name.capitalize() with substring(0,1).toUpperCase()+substring(1)
so that flavored variants like freeRelease produce FreeRelease (not Freerelease),
matching React Native's bundle task naming convention.
- Replace tasks.named() with tasks.configureEach + name-set filter to handle
bundle tasks registered after sentry's onVariants callback fires (e.g. when
sentry.gradle is applied before the React Native plugin). configureEach does
not iterate or realize the task container so the Fullstory AGP Artifacts API
fix (#5698) and react-native-legal fix (#5236) are preserved.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments