Closes #9333: Prevent compression of omni.ja to improve startup time

Co-authored-by: Markus Stange <mstange@themasta.com>
Co-authored-by: Agi Sferro <agi@sferro.dev>
innovation-week
Christian Sadilek 4 years ago committed by Michael Comella
parent a23bcebb5d
commit d184b99649

@ -169,6 +169,14 @@ android {
}
}
aaptOptions {
// All JavaScript code used internally by GeckoView is packaged in a
// file called omni.ja. If this file is compressed in the APK,
// GeckoView must uncompress it before it can do anything else which
// causes a significant delay on startup.
noCompress 'ja'
}
testOptions {
execution 'ANDROIDX_TEST_ORCHESTRATOR'
unitTests.includeAndroidResources = true

Loading…
Cancel
Save