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
// By the time afterEvaluate runs, all plugins have registered their onVariants
93
93
// callbacks and the AGP Artifacts API transform chain is fully established.
94
94
project.afterEvaluate {
95
+
if (releaseVariants.isEmpty()) {
96
+
project.logger.warn("[sentry] No release variants collected, onVariants may have run after afterEvaluate. Sourcemap upload tasks will not be registered.")
97
+
}
95
98
releaseVariants.each { variantData->
96
99
// separately we then hook into the bundle task of react native to inject
97
100
// sourcemap generation parameters. In case for whatever reason no release
0 commit comments