Skip to content
Digital products marketplace and development services
MILMIT JOURNAL

What is dex in Android?

What is ? – The problem is this

One of the remarkable features of the Dalvik virtual machine is the presence of the dex file in Android, in fact, this dex system is the beating heart behind the Android system. The Dalvik virtual machine in Android does not use the bytecode available in Java, which means that the codes are not read and executed based on the old Java system. Rather, your bytecodes are converted to dex files.

 

What does Dex mean in simple language?

There is a format called dex (similar to the format of files like exe, zip, etc.) when you write your code in Java or Kotlin and want to convert it to apk, gradle creates an output from your code section. And it formats it for you in terms of having a series of data structures and when your app is installed on the phone, the dex file is read by the system in the background and used.

Compiled codes are simply called Dex

Each software can have one or more dex files depending on the amount of code that is written for it. When the software compilation starts, first the code files of your program are converted to dex files, then all of them are integrated and become one. The signed apk file is converted.

Dex file format is as below.

1. File Header
2. String Table
3. Class List
4. Field Table
5. Method Table
6. Class Definition Table
7. Field List
8. Method List
9. Code Header
10. Local Variable List

 

Dex files can be reverse engineered using the dexdump software included in the Android SDK.

In Android, part of the libraries based on dex already exist in the operating system by default.

 

 

This training is over.

be successful and victorious.

 

 

CONTINUE READING

Related articles

View all articles
3 min read

How to remove WordPress pop-up virus

We will teach you how to remove WordPress popup virus ($_REQUEST[‘action’]) && isset($_REQUEST[‘password’]) && ) It may happen that sometimes when you open your…

MilMit
2 min read

How to install Xcode on Windows

– Rent a Mac online Yes, you may ask what is online Mac rental. As you know, there is a service called VPS. In…

MilMit

Leave a Reply