Files located in the tutorial/step2/files directory:
| mousegestures-1.2.jar | Mouse Gestures library jar |
| test.jar | Jar with Mouse Gestures demo frame |
| config.xml | Allatori configuration file |
| RunAllatori.bat | Runs Allatori |
| MouseGesturesOriginal.bat | Runs original version of Mouse Gestures |
| MouseGesturesObfuscated.bat | Runs obfuscated version of Mouse Gestures |
| 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.