Skip to content

Commit db7e190

Browse files
committed
ANDROID: update handling for ioio module
1 parent 9683878 commit db7e190

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/platform/android/app/src/main/java/net/sourceforge/smallbasic/MainActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,12 +373,12 @@ public boolean loadModules() {
373373
boolean result;
374374
try {
375375
System.loadLibrary("ioio");
376-
Class<?> clazz = Class.forName("net.sourceforge.smallbasic.ioio.IOIOLoader");
376+
Class<?> clazz = Class.forName("ioio.smallbasic.android.IOIOLoader");
377377
clazz.getDeclaredConstructor(Long.class, Context.class).newInstance(getActivity(), this);
378-
Log.d(TAG, "loadModules - success");
378+
Log.e(TAG, "loadModules - success");
379379
result = true;
380380
} catch (Exception | UnsatisfiedLinkError e) {
381-
Log.d(TAG, "loadModules", e);
381+
Log.e(TAG, "loadModules", e);
382382
result = false;
383383
}
384384
return result;

0 commit comments

Comments
 (0)