Is this sentence about AoT correct?

37 views Asked by At

ART is based on AOT (ahead-of-time) technology that compiles the code during the installation of the app, increasing the installation time of an app

1

There are 1 answers

0
Apurv On BEST ANSWER

Yes, this statement is correct. ART uses Ahead of Time Approach (AOT) instead of JIT. ART can run native code directly. Whereas the DVM needs to run the compiled Dex bytecode. Hence, ART is faster for applications.

Drawbacks of ART include:

Increased installation time,

increased reboot time,

increased storage.

Refer link below for more information :

ART 1

ART 2

ART 3