TIL#02: What are Dex Files and Why Android Needs Them
TLDR; Dalvik
Jan 25, 20224 min read90

Search for a command to run...
Series
In this series, I will post nuggets of articles about things I just learned on a given day
TLDR; Dalvik

Ever since started learning programming in high school and knowing C & C++, one thing has always bugged me, that is, why do pointers have data types? In C & C++, when we need to declare a pointer we normally do it like this: int b = 10; int* a = &b; ...
