[Android] add abiFilters to Flutter Gradle Plugin #168293
Open
+173
−0
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.
fixes #153476
More context in #153476 (comment) and #153476 (comment)
TLDR:
abiFilters
cannot be added to templates (the original issue proposes that) because it will break the Gradle build if the--splits-per-abi
option is provided:In this PR,
abiFilters
is added programmatically in the Flutter Gradle Plugin when thesplits-per-abi
option is not provided and only for non-debuggable builds.As stated in #153476 (comment),
abiFilters
are actually useful in cases when a third-party dependency is used with thex86
variant. In other cases (such as a fresh Flutter app project),abiFilters
are a bit excessive, but they do no harm.Pre-launch Checklist
///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.