xwords/xwords4/android/scripts/getsigs.sh

10 lines
258 B
Bash
Executable file

#!/bin/sh
BASE=$(dirname $0)
cd $BASE/../XWords4/bin/classes
javah -o /tmp/javah$$.txt org.eehouse.android.xw4.jni.XwJNI
javap -s org.eehouse.android.xw4.jni.DrawCtx
javap -s org.eehouse.android.xw4.jni.XW_UtilCtxt
cat /tmp/javah$$.txt
rm /tmp/javah$$.txt