So ... I am trying to create a plugin for one of my applications. This plugin will require several types, images, activity and an analyzer for CharSequences ... Ideally, this plugin will be downloaded from the Android Market.
I understand how to create a library, but this should be included in the application.
I understand how to create an application as a service and just call it using intentions, but I need direct access to objects and code, which cannot be legible or serializable.
What I watched is the eyeless TTS . With their implementation, the developer includes a small TTS_library_stub.jar file in his application, which looks like it defines many necessary classes / objects.
So my question is: how do I come up with something like this and create this "stub" .jar file that will be included in my application? I tried to work out the TTS code, but this is a massive code base and it is hard for me to find what I am looking for.
Any help would be greatly appreciated :)
Geoff source
share