Creating A Dex File From Java Source Code
I have searched extensively on the web for a comprehensive guide to creating an Android DEX file (Java Dalvik bytecode) using the Android SDK DX tool. My aim is to create a Jar fil
Solution 1:
Turns out the output of the jar command needs to be the same as the name of the class.
Renaming output.jar
to Name.jar
seemed to resolve the issue.
Post a Comment for "Creating A Dex File From Java Source Code"