-
Notifications
You must be signed in to change notification settings - Fork 986
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
Test Steps to reduce PR Android APK size #15638
Merged
Merged
Conversation
This file contains 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
Jenkins BuildsClick to see older builds (4)
|
siddarthkay
force-pushed
the
reduce-pr-apk-size
branch
2 times, most recently
from
April 13, 2023 10:30
961ed45
to
910e55d
Compare
jakubgs
approved these changes
Apr 13, 2023
Android APK sizes before the react-native upgrade were below 100mb and now they are 211MB. by adding extractNativeLibs="true" in AndroidManifest.xml we are instructing the app to compress native libs and extract them after installing the apk on device. With this change the Android APK size dropped to 103MB. A side effect of this may be that the app may now take more space on the device. ref : https://developer.android.com/guide/topics/manifest/application-element#extractNativeLibs After upgrading Android Gradle Plugin to 4.2.0 and above we must use useLegacyPackaging in our app's build.gradle and get rid of extractNativeLibs="true" from AndroidManifest.xml
siddarthkay
force-pushed
the
reduce-pr-apk-size
branch
from
April 13, 2023 10:36
910e55d
to
23aa8e4
Compare
J-Son89
approved these changes
Apr 13, 2023
vitvly
approved these changes
Apr 13, 2023
89% of end-end tests have passed
Not executed tests (10)Failed tests (2)Click to expandClass TestCommunityMultipleDeviceMerged:
Class TestActivityMultipleDevicePR:
Passed tests (17)Click to expandClass TestOneToOneChatMultipleSharedDevicesNewUi:
Class TestCommunityMultipleDeviceMerged:
|
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.
This PR adds steps to reduce the APK size which has almost doubled after the recent react-native upgrade #15486.
Android APK sizes before the react-native upgrade were below 100mb and now they are 211MB.
by adding
extractNativeLibs="true"
inAndroidManifest.xml
we are instructing the app to compress native libs and extract them after installing the APK on device.With this change the Android APK size dropped to 103MB.
A side effect of this may be that the app may now take more space on the device.
ref : https://developer.android.com/guide/topics/manifest/application-element#extractNativeLibs
After upgrading Android Gradle Plugin to 4.2.0 and above we must use
useLegacyPackaging
in our app'sbuild.gradle
and get rid of
extractNativeLibs="true"
fromAndroidManifest.xml
status : ready