Dex file android error

Что такое .dex-файлы в Android?

У меня есть некоторые вопросы относительно файлов dex

  • Что такое файл dex в Android?
  • Как работает dex для Android?
  • Как они используются при отладке приложения для Android?
  • Являются ли они похожими на файлы классов java?

Мне нужна конкретная информация, пожалуйста, помогите в этом, и любые реальные примеры приветствуются!

Скомпилированный файл кода приложения Android.

Программы Android скомпилированы в файлы .dex (Dalvik Executable), которые, в свою очередь, заархивированы в один файл .apk на устройстве. .dex файлы могут быть созданы автоматически Android, путем перевода скомпилированных приложений, написанных на языке программирования Java.

О файле .dex:

Одна из самых замечательных особенностей Dalvik Virtual Machine (рабочая лошадка в системе Android) заключается в том, что она не использует байт-код Java. Вместо этого был введен домашний формат DEX, и даже инструкции байт-кода не совпадают с инструкциями байт-кода Java.

Программы Android скомпилированы в .dex (Dalvik Executable), которые, в свою очередь, заархивированы в один файл .apk на устройстве. .dex файлы могут быть созданы путем автоматического перевода скомпилированных приложений, написанных на языке программирования Java.

Формат файла Dex:

Android имеет документацию по Dalvik Executable Format файлу Dalvik Executable Format (файлы .dex ). Вы можете узнать больше в официальных документах: Dex File Format

.dex файлы похожи на файлы классов java, но они работают под управлением DVM .

Вы можете decompile .dex, используя инструмент dexdump , который предоставляется в android-sdk.

Существуют также некоторые обратные инженерные методы, чтобы сделать jar file или java class file из файла .dex .

Файл dex – это файл, который выполняется на VM Dalvik.

Dalvik VM включает в себя несколько функций для оптимизации производительности, проверки и мониторинга, одним из которых является Dalvik Executable (DEX) .

Исходный код Java скомпилирован компилятором Java в .class . Затем инструмент dx (dexer), входящий в состав Android SDK, обрабатывает .class в формате файлов DEX который содержит байт-код Dalvik. Инструмент dx устраняет всю избыточную информацию, присутствующую в классах. В DEX все классы приложения упаковываются в один файл. В следующей таблице приведено сравнение размеров кода для jar-файлов JVM и файлов, обработанных инструментом dex .

В таблице сравниваются размеры кода для системных библиотек, приложений веб-браузера и приложения общего назначения (приложение для будильника). Во всех случаях инструмент dex уменьшает размер кода более чем на 50%.

В стандартных средах Java каждый класс в Java-коде приводит к одному .class файлу. Это означает, что если файл исходного кода Java имеет один открытый класс и два анонимных класса, скажем, для обработки событий, тогда java-компилятор создаст всего три файла .class .

Шаг сборки такой же на платформе Android, что приводит к нескольким файлам .class . Но после создания файлов .class инструмент «dx» используется для преобразования всех файлов .class в один .dex или Dalvik Executable. Это файл .dex который выполняется на VM Dalvik. Файл .dex оптимизирован для использования памяти, и дизайн в первую очередь определяется совместным использованием данных.

Источник

Apktool.jar common errors and solutions

evildog1

Senior Member

Since many got apktool.jar errors and don’t know how to search or solve themself, I decided to explain and provide solutions here with links to Github. I have a friend who sometime can help me with this.

I will do my best to get much info. Feel free to post your thoughts

Know your error:
There’s a wide range of error messages you may encounter when decompiling and compiling your app. Depending on the kind of error you encounter, apktool.jar will always display the error message. Spotting error messages is easy

For example this log:

If you think could not exec is your error, it’s actually not, the real error is actually a ‘warning’

The good thing it tells you which line it occured AndroidManifest.xml:15:. it’s line 15 in AndroidManifest.xml
This was caused by a space in a permission tag. Removing it will fix the compiling error

It’s not always a simple fix. This always depending

Check the APK file:
Sometimes APK is obfuscated in many ways.
Open the APK using 7-zip and WinRar and see if the first classes.dex is smaller than 500 KB or way bigger than 10 MB. If so, it a sign it’s encrypted. Decompiling and compiling the big dex file will result in a smaller size and it will fail to decrypt due to missing encrypted block
Decompile and check if smali files and codes are obfuscated. This is an example of Netflix app that is obfuscated

Читайте также:  Перекинуть все номера с андроид

Don’t ask me how to break protected APK, I’m not a reverser so I can’t help you with it.

Troubleshooting:
Sometime those troubleshooting tricks helps fixing errors. Please try one or more of the following below

Источник

[HowTo] Odex FRAMEWORK, all Android versions may apply.

BreatheHT

Senior Member

Here in this tutorial, I will show some facts about Deodex and Odex, then explain how to odex the framework of a ROM(which is pretty annoying, you’ll find out). Credits goes to myself

This method should work on all Android devices.

First of all, what is odex? Something you should know about classes.dex.

Odex stands for Optimized dex. I’m not gonna explain a lot because I’m not sure if I’m right. First of all, in typical apk files, when you open it with WinRAR or something like that, you can find a file called «classes.dex»(this type of apk is deodexed). This file is the key. It contains the core codes of the apk. However the other type of apk comes with an *.odex file and doesn’t have classes.dex inside the apk file. This is odexed apk. There are 2 types of ROMs here, odexed and deodexed. Odexed ROMs’ classes.dex are already out of the apk files, while deodexed ROMs’ classes.dex are still in the apks. When Android executes an apk, it has to extract the classes.dex out and execute it. So when you flash an deodexed ROM, the first boot takes a long long time since the Android system needs to extract all the classes.dex into dalvik-cache(it shows «Optimizing apks» on the screen for 4.0 ROMs, shows boot animation on screen for 2.3 or below ROMs). However for the odexed ROMs, because the classes.dex are already out there, the system just grabs them and use them, without wasting time and storage space extracting classes.dex out.

Why odex framework?

It can boost your device a little by odexing your framework. Your phone can run more efficiently. Although it’s a complicated process, but trust me, it’s worth it.

What is so special about odexing framework files? What’s the difference?

Odexing an app is very easy, and I believe everyone knows how to do it. But odexing framework is really annoying. Why? Because apps and more like stand-alone things, they are not a part of system. You delete it, nothing bad happens, your phone still boots, you just get endless FC if you delete the wrong one, or missing status bar, that’s all. But framework files you cannot mess around. They are parts of the system. They have to match the system’s codes precisely, without any error, even the order of files(keep this in mind, very important). So for every ROM, the framework initialize codes are different(same RUU or other ROM based ROMs count as its base ROM), and you must modify the odexing binary to make it odex for you properly, or you can sit and watch the beautiful bootloop.

What’s the relationship between odexing apps and odexing framework?

Simple, but important. If you odexed apps, you cannot touch the framework. Framework always goes in the first place. If you wanna odex both, you must odex framework first. Or. «The Tragedy of App and Framework».

So what do we have to keep in mind before we start?

Keep your mind clear, prepare a bag of ice in case you feel dizzy with the codes, and MAKE ENOUGH SPACE FOR FRAMEWORK ODEXING. I would prefer you remove a few useless apks in /system/app first to make more room in system partition. Failing odexing may brick your device forever! Nah just kidding it will only cause you to bootloop. No big deal. Also, it won’t odex your framework-res.apk and always will not, so don’t feel bad and do it again and again till your phone burn . Make sure your device is ROOTED and enable USB debug. You need Java Runtime Environment.

Читайте также:  Android как отправить post запрос

What tools do you need?

Notepad++ and a magical rar that contains all you need to success.

Let’s get started.

1. Use your file manager to find init.rc at the very root directory of your phone and copy it to SDCard for later code editing, or you simply adb pull it out and skip the coping step. (If you know how to compile boot.img it is even easier, just unpack boot in Android Kitchen, look for line «export BOOTClassPATH». I’m not gonna introduce that method since most people can’t. Silly me, didn’t I just intoduced that? XD)

2. Connect USB, set mode as disk drive so you can access your SDCard. Copy init.rc into your computer. Open it with notepad, and find where it says «export BOOTClassPATH», create a new file and copy line «export BOOTClassPATH» into the new file. For example:

3. Open dexopter in the rar you downloaded with Notepad++. Find the lines that show the similar contents to the things after «export BOOTClassPATH». It is Line 21 to Line 35 on my laptop. Edit them according to the things you just copied out of init.rc. For example, if the first file is «X.jar», then you will have to edit the line into «dexopt-wrapper/system/framework/X.jar /system/framework/X.odex». Then repeat until you finish with all the files that are listed in the long list you copied out of init.rc. File order DOES MATTER. Use the bag of ice I told you to prepare eariler to make you sober if you feel dizzy with the codes. The lines may be more or less after you edited them, doesn’t matter.

4. Copy «dexopter» and «dexopt-wrapper» into /system/bin and set the correct permissions. Make sure they have enough permission to change your system files. Restart your phone.

5. Go to CMD and lead it to where adb.exe is(included in the rar). Type these in order:

Then the codes will run crazy in your cmd window. The odex process has begun!

6. If the odex process completed without error, you are half way there! Well it doesn’t mean you have to stare at your screen during the process. It’s about time we figure it out! The phone will automatically reboot once it’s finished. If it doesn’t and you are sure all are done, reboot manually.

7. If you can’t boot properly, go back and check everything carefully. If you can, then open your file manager and copy the entire framework directory into your SDCard. You can still adb pull and skip the next coping step.

8. Mount SDCard. Go into framework directory on your computer. Open every file that has an odex file with it, delete the classes.dex inside. WinRAR is okay. The files may seem ridiculously small after you delete the classes.dex, but don’t worry since classes.dex are already pulled out and turned into odex files.

9. Copy the whole framework folder into the folder where adb is at. Use adb to push all the files back into /system/framework.

10. After all the files are pushed in, reboot your phone.

11. If it still boots into the system, congratulations! You’ve successfully odexed your framework! If it doesn’t, then go back and read everything carefully. The most common error occurs when you are editing the dexopter code. You will have to redo everything again.

Done! Everything is ready to go!

You can directly grab the files you’ve odexed and put it in your custom ROM(must be the same base), just don’t forget the odex files.

Okay, hmm, what to say now? Still, I would be glad if you donated me, but if you don’t it’s okay, just reply and hit thanks .

Читайте также:  Андроид включается с оптимизации

Oh almost forgot, the magical rar: http://d-h.st/tYi

Big thanks to Scott, see him in #3. He explained why some files aren’t odexed and provided a easier method(but they all get you dizzy )

Big thanks to JSLEnterprises, see him in #4. He provided a newer busybox for Scott’s method.

Источник

Что.DeX файлы в Android?

У меня есть несколько вопросов по поводу DeX файлы

  • что это dex файл в Android?
  • как dex работает для Android?
  • как они используются при отладке приложения для Android?
  • они похожи на файлы классов Java?

Мне нужна конкретная информация, пожалуйста, помогите в этом, и любые реальные примеры приветствуются!

4 ответов

об .файл dex:

одна из самых замечательных особенностей Dalvik Virtual Machine (рабочая лошадка в системе Android) заключается в том, что она не использует байт-код Java. Вместо этого был введен доморощенный формат DeX, и даже инструкции байт-кода не совпадают с инструкциями байт-кода Java.

Android программы компилируются в .dex (исполняемый файл Dalvik) файлы, которые, в свою очередь, сжаты в один на устройство. .dex файлы могут быть созданы с помощью автоматического перевода, скомпилированных приложений, написанных на языке программирования Java.

формат файла Dex:

Android имеет документацию на Dalvik Executable Format (.Декс!—15—> файлы). Вы можете узнать больше в официальных документах:Формат Файла Dex

.dex файлы похожи на файлы классов java, но они были запущены под Dalkvik Virtual (DVM) на старые версии Android и скомпилированы во время установки на устройстве в собственный код с искусством на новых версиях Android.

вы можете decompile .Декс с помощью dexdump инструмент, который предоставляется в Android-sdk.

есть также некоторые Методы Обратного Проектирования сделать jar file или java class file С .

скомпилированный файл кода приложения Android.

программы для Android компилируются .DeX (Dalvik Executable) файлы, которые, в свою очередь, молнии в один .apk файл на устройстве. .файлы dex могут быть созданы автоматически Android, путем перевода скомпилированных приложений, написанных на языке программирования Java.

dex файл-это файл, который выполняется на виртуальной машине Dalvik.

Dalvik VM включает в себя несколько функций для оптимизации производительности, проверки и мониторинга, одним из которых является исполняемый файл Dalvik (DEX).

исходный код Java компилируется компилятором Java в .class файлы. Тогда dx (dexer) инструмент, часть Android SDK обрабатывает .class файлы в формате файла с именем DEX который содержит байтовый код Dalvik. The dx инструмент устраняет всю избыточную информацию, которая присутствует в классах. В DEX все классы приложения упакованы в один файл. В следующей таблице приводится сравнение размеров кода для JVM jar-файлов и файлов, обрабатываемых .

таблица сравнивает размеры кода для системных библиотек, приложений веб-браузера и приложения общего назначения (приложение будильника). Во всех случаях DeX tool уменьшил размер кода более чем на 50%.

в стандартных средах Java каждый класс в коде Java приводит к одному . Это означает, что если файл исходного кода Java имеет один открытый класс и два анонимных класса, скажем, для обработки событий, то компилятор java создаст всего три .class файлы.

шаг компиляции одинаковый на платформе Android, что приводит к нескольким .class файлы. Но после .class генерируются файлы, используется инструмент » dx чтобы преобразовать все .class файлы в один .dex , или исполняемый файл Dalvik. Это .dex файл, который выполняется на виртуальной машине Dalvik. The .dex файл был оптимизирован для использования памяти, и дизайн в первую очередь определяется обменом данными.

файл класса здесь содержит стандартный байт-код Oracle JVM.

[ ФАЙЛ КЛАССА JAVA ] > [ ФАЙЛ КЛАССА DEX ]

с тех пор, java .файл класса содержит стандартный байт-код JVM. Но Android-устройства не используют этот формат байт-кода. Вместо этого Android имеет свой собственный формат байтового кода, называемый Dalvik. Байт-коды Dalvik, как и байт-коды Oracle JVM, являются инструкциями машинного кода для теоретического процессора.

в процесс компиляции необходимо преобразовать .файлы классов и любые другие .библиотеки jar в один класс.файл dex, содержащий байт-коды Dalvik. Команда dx сшивает все .класс и. JAR-файлы вместе в один класс.файл dex, написанный в формате байт-кода Dalvik.

Итак, это преобразование .класс и. jar файлы В.файлы dex называются компиляцией Dex, а полученные таким образом файлы называются файлами Dex.

Источник

Оцените статью