this post was submitted on 20 Dec 2023
45 points (92.5% liked)

Android

27329 readers
170 users here now

DROID DOES

Welcome to the droidymcdroidface-iest, Lemmyest (Lemmiest), test, bestest, phoniest, pluckiest, snarkiest, and spiciest Android community on Lemmy (Do not respond)! Here you can participate in amazing discussions and events relating to all things Android.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules


1. All posts must be relevant to Android devices/operating system.


2. Posts cannot be illegal or NSFW material.


3. No spam, self promotion, or upvote farming. Sources engaging in these behavior will be added to the Blacklist.


4. Non-whitelisted bots will be banned.


5. Engage respectfully: Harassment, flamebaiting, bad faith engagement, or agenda posting will result in your posts being removed. Excessive violations will result in temporary or permanent ban, depending on severity.


6. Memes are not allowed to be posts, but are allowed in the comments.


7. Posts from clickbait sources are heavily discouraged. Please de-clickbait titles if it needs to be submitted.


8. Submission statements of any length composed of your own thoughts inside the post text field are mandatory for any microblog posts, and are optional but recommended for article/image/video posts.


Community Resources:


We are Android girls*,

In our Lemmy.world.

The back is plastic,

It's fantastic.

*Well, not just girls: people of all gender identities are welcomed here.


Our Partner Communities:

[email protected]


founded 1 year ago
MODERATORS
 

I found https://www.androidauthority.com/maximize-battery-life-882395/ but I don't know if it applies to every device, or if I should charge my asus X00PD differently

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 21 points 8 months ago (10 children)

I found this - increases battery life while apps open faster - confirmed via AccuBattery testing for a couple of weeks:

You can force ART compiler's AOT(Ahead Of Time) compiler to force compile all the apps ahead of time instead of JIT(Just In Time) which compile apps on the fly when you open and use different parts of an app.

By default google uses a profile-based method to only compile the most used parts of an app. (You can find more info by reading the source which I've mentioned below)

Remember forcing compilation take some time depending on how many apps you have installed.

Only downside is this takes up little bit more storage space due to compiled .oat files are being larger in size compared to dex files.

For example for me, apps installed without forcing compilation takes about 30GBs of space in total and after compilation it takes about 39GB.

You can use this command to compile all the apps:

adb shell cmd package compile -m speed -f -a

[โ€“] [email protected] 1 points 8 months ago (1 children)

Nifty! Is there an option to selectively compile packages? So I could try it on the apps I use most often? ๐Ÿค”

[โ€“] [email protected] 1 points 7 months ago

Yes - absolutely - just google the adb command and you should get all the infos you need!

load more comments (8 replies)