Skip to content

Instantly share code, notes, and snippets.

@gin0606
Created August 1, 2014 11:21
Show Gist options
  • Select an option

  • Save gin0606/a2efa6570cd7bce2c11b to your computer and use it in GitHub Desktop.

Select an option

Save gin0606/a2efa6570cd7bce2c11b to your computer and use it in GitHub Desktop.
classファイルcompile終わったらjniのheaderを生成するカスタムルール
<?xml version="1.0" encoding="UTF-8"?>
<project name="custom_rules" default="help">
<target name="-post-compile">
<javah classpath="./path/to/classes" destdir="./path/to/jni/">
<class name="me.gin0606.ClassName" />
</javah>
</target>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment