Convert .Jar to .Dex

0

Speak up! I decompiled an apk and it generated a class.dex file. I managed to turn this file into .jar and now I want to go back to .dex. How to do this?

    
asked by anonymous 15.10.2017 / 02:43

1 answer

1

In Github there is the following project: link

You can download the compiled version at link

Inside the folder should contain d2j-jar2dex.bat that does exactly what you need.

The scripts you see in the download:

  • d2j-baksmali
  • d2j-dex-recompute-checksum
  • d2j-dex2jar
  • d2j-dex2smali
  • d2j-jar2dex
  • d2j-jar2jasmin
  • d2j-jasmin2jar
  • d2j-smali
  • d2j-std-apk
  • d2j_invoke
15.10.2017 / 02:48