perf(core): Use build-time class availability - #5875
Merged
Conversation
Consult class availability data injected by build tooling before falling back to reflection. Keep the map nullable so consumers without supporting tooling preserve current behavior. Refs JAVA-654 Co-Authored-By: Codex <noreply@openai.com>
📲 Install BuildsAndroid
|
Allow package-local tests to set class availability without reflection. Refs LINEAR-JAVA-654 Co-Authored-By: Codex <noreply@openai.com>
romtsn
force-pushed
the
romtsn/feat/java-654-compile-time-checks
branch
from
July 30, 2026 13:12
8635d0a to
6b596d5
Compare
romtsn
marked this pull request as ready for review
July 30, 2026 14:10
romtsn
requested review from
0xadam-brown,
adinauer,
markushi and
runningcode
as code owners
July 30, 2026 14:10
runningcode
approved these changes
Jul 30, 2026
runningcode
left a comment
Contributor
There was a problem hiding this comment.
Seems simple enough!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📜 Description
Allow
LoadClass.isClassAvailableto use class-availability results supplied by build tooling before falling back toClass.forName. The lookup map is nullable and private, so applications without compatible tooling keep the existing reflection behavior.💡 Motivation and Context
Android SDK initialization probes optional integrations reflectively. Build tooling already knows whether their owning modules are present, so it can avoid those runtime checks.
Refs JAVA-654
💚 How did you test it?
./gradlew spotlessApply apiDump./gradlew :sentry:test --tests '*LoadClassTest*'📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
getsentry/sentry-android-gradle-plugin#1375 injects the build-time results.
#skip-changelog