Files located in the tutorial/step2/files directory:
mousegestures-1.2.jar | Mouse Gestures library jar |
test.jar | Jar with mouse gestures demo frame |
RunAllatori.bat | Runs Allatori Obfuscator |
MouseGesturesOriginal.bat | Runs original version of the Mouse Gestures |
MouseGesturesObfuscated.bat | Runs obfuscated version of the Mouse Gestures |
config.xml | Allatori configuration file |
Clean.bat | Deletes generated files |
<config> <jars> <jar in="test.jar" out="obf-test.jar"/> <jar in="mousegestures-1.2.jar" out="obf-mousegestures-1.2.jar"/> </jars> <keep-names> <class template="class *.TestFrame"/> </keep-names> <property name="log-file" value="log.xml"/> </config>
We have changed the keep-names section so that only the class com.smardec.mousegestures.test.TestFrame wouldn't be renamed. We have used wildcard syntax (*.TestFrame) for short.