I have made an application that converts .dex file to .jar
file using the library dex2jar.
the code is given as follows:
import com.googlecode.dex2jar.v3.Main;
{
String apkPath = "D://myapk.apk" ;
Main.main(apkPath);
}
this code block works properly and I am getting asd_dex2jar.jar file, but the problem is after executing calling the main(), the program closes automatically,
so is there any way to do this any another way ??