I'm writing an app that needs to load dinamically plugins from external libraries.
My first idea was -with very little immagination- to use Java's ServiceLoader
and googling a little bit I found documentation that states that this kind of action is supported by Android: http://developer.android.com/reference/java/util/ServiceLoader.html
However I really don't understand where to place my META-INF folder (I'm used to Maven, but I can't use it in this occasion).
Could someone tell me where to place the META-INF folder and what to do to have it working in the usual way?
Stefano