- add loading of native bullet libraries to AndroidHarness, caught if fails
git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8828 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
parent
e1bcefefe9
commit
6113425db9
@ -110,6 +110,13 @@ public class AndroidHarness extends Activity implements TouchListener, DialogInt
|
||||
protected boolean isGLThreadPaused = true;
|
||||
final private String ESCAPE_EVENT = "TouchEscape";
|
||||
|
||||
static {
|
||||
try {
|
||||
System.loadLibrary("bulletjme");
|
||||
} catch (UnsatisfiedLinkError e) {
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
Loading…
x
Reference in New Issue
Block a user