This commit is contained in:
Eric House 2013-11-29 08:48:13 -08:00
parent 60026b6ef2
commit 79b60ae895
2 changed files with 1 additions and 6 deletions

View file

@ -21,7 +21,6 @@
package org.eehouse.android.xw4.jni;
import android.graphics.Rect;
import org.eehouse.android.xw4.jni.BoardDims;
public interface SyncedDraw {
void doJNIDraw();

View file

@ -21,16 +21,12 @@
package org.eehouse.android.xw4.jni;
import android.graphics.Rect;
import org.eehouse.android.xw4.jni.BoardDims;
// Collection of native methods
public class XwJNI {
// This needs to be called before the first attempt to use the
// jni. I figure this class has to be loaded before that cna
// happen. Doing this in GamesList isn't enough because sometimes
// BoardActivity is the first Activity loaded.
// jni.
static {
System.loadLibrary("xwjni");
}