How to get all classes which implement specified interface in Android? I think Classloader and Class classes should be used somehow..
Walking all loaded by classloader classes and checking, if it implements specified interface, is not good idea i suppose.
I've found similar question and perfect answers here: Find Java classes implementing an interface.
BUT Dalvik has some restrictions and i wonder which method is available on Android. Thanks.