2
0
mirror of https://gitlab.com/Nanolx/NanoDroid synced 2024-10-31 09:20:23 +00:00

update DeodexServices.md

This commit is contained in:
Christopher Roy Bratusek 2018-09-20 22:02:09 +02:00
parent cacfbc7387
commit 2f042b0017

View File

@ -40,10 +40,11 @@ vdexExtractor -i framework/oat/[arch]/services.vdex --ignore-crc-error
this will create the following file:
* framework/oat/[arch]/services.apk_classes.dex
if it's properly been created rename it to classes.dex and add it to `services.jar`
if it's properly been created rename it to classes.dex and add it to `services.jar`, if there are additional files like services.apk_classes2.dex, rename them to classes2.dex and so on and add them to services.jar like:
```
mv framework/oat/[arch]/services.apk_classes.dex classes.dex
... mv for other dex files ...
zip -j framework/services.jar classes*.dex
```