Is it possible to dynamically load a library at runtime from an Android application?

Sorry, I’m late and the question has already an accepted answer, but yes, you can download and execute external libraries. Here is the way I did: I was wondering whether this was feasible so I wrote the following class: package org.shlublu.android.sandbox; import android.util.Log; public class MyClass { public MyClass() { Log.d(MyClass.class.getName(), “MyClass: constructor called.”); } … Read more