InterviewSolution
| 1. |
What is ART? |
|
Answer» It stands for Android RUN Time. ART is used for running Android applications. It uses AOT (AHEAD Of Time) compilation on the device. When an APK is getting installed on the Android device, the .dex files from the APK file will be converted to processor’s native instructions set/machine code (.art extension) and that will be stored in the app’s runtime cache directory on the device’s internal storage. This will make installation little bit longer and TAKE more space on the device storage but it makes apps run much faster, less BATTERY consumption, robots application debugging support and better user experience. |
|