-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[android][tests] Do not package unused CoreCLR libs when building test apks #113209
[android][tests] Do not package unused CoreCLR libs when building test apks #113209
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Overview
This PR introduces filtering logic to exclude unused CoreCLR libraries from Android APKs, reducing the overall package size for both samples and tests.
- Added a new exclusion mechanism for CoreCLR libraries based on the IsCoreCLR flag.
- Further refines filtering by conditionally excluding debugger support libraries when StripDebugSymbols is enabled.
Reviewed Changes
File | Description |
---|---|
src/tasks/AndroidAppBuilder/ApkBuilder.cs | Updated the logic to filter out unused CoreCLR libraries from the APK build |
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
Tagging subscribers to this area: @akoeplinger, @matouskozak |
5990e6c
to
8c56367
Compare
FYI: This reduces the CoreCLR .apk size of the sample app from 8.1 to 5.5MB |
/ba-g unrelated non-android test failures |
As a short-term solution, this PR filters out unused CoreCLR libraries from .apks, which reduces the size of internally built Android apps (both for samples and tests).
As a long-term solution, we can:
Contributes to: #111954