app compilation improvements

This commit is contained in:
Daniel Micay 2024-12-29 16:23:59 -05:00
parent df7ee49d00
commit fb71e27cf5

View File

@ -555,8 +555,11 @@
<li>add support for limiting charging the battery to 80% with support for bypass charging similar to the new Android 15 QPR1 stock Pixel OS feature, although unlike the stock Pixel OS our implementation still works while using a secondary user (the limit is currently hard-wired to 80% due to that being what's properly supported throughout the OS, but we can eventually make it configurable)</li>
<li>add support for disabling dynamic code loading via storage for user installed by default as we already do for the dynamic code loading via memory setting</li>
<li>allow dynamic code loading from storage by default for apps depending on Play services due to the legacy dynamite module implementation not yet being fully replaced by split APKs to avoid users encountering a huge number of issues if they disable it by default for user installed apps (users can still disable it for these apps manually and we won't need to keep this exception forever since Google is moving to split APKs for dynamite modules)</li>
<li>add support for partially recompiling apps (speed-profile) in the Finalizing step of OS updates to skip partially recompiling them during boot, but while still doing most of the work after boot in the background (speed) to avoid slowing down OS update installation too much</li>
<li>remove adding back boot-time display of app compilation progress now that it's no longer heavily used</li>
<li>use 2 threads instead of 1 for background compilation of apps</li>
<li>switch to the new upstream default of 4 threads for compiling apps during boot instead of our previous 2 threads which we set to replace the previous upstream default of a single thread</li>
<li>Settings: add back battery optimization settings link to Battery screen which was removed by Android a long time ago</li>
<li>switch to the new upstream default of 4 threads for compiling apps at boot from our previous 2 threads which we set to replace the previous upstream default of a single thread</li>
<li>add back our fix for an upstream Android bug causing null pointer exception system_server crash in InputMethodManagerService triggered when ending user sessions because it turns out to still be required after Android 15 QPR1</li>
<li>fix upstream Android bug causing null pointer exception system_server crash in NotificationManagerService</li>
<li>Contacts: improve dark theme color contrast</li>