Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create an android plugin with views, activities and objects

Tags:

android

So... I'm trying to create a plugin for one of my apps. This plugin would require several views, images, an activity and a parser for CharSequences... Ideally, this plugin would be downloadable from the Android Market.

I understand how to create a library, but that would need to be included in the application.

I understand how to create an app as a service and just call it via intents, but I need direct access to objects and code that is neither parceable nor serializable.

What I have been looking at is eyes-free TTS. With their implementation, the developer includes a small TTS_library_stub.jar file in their app, which looks like it defines a lot of the necessary classes/objects.

So my question is, how would I go about building something like this and generating this "stub" .jar file, which would be included in my app? I've been trying to work my way through the TTS code, but it's a massive codebase, and I'm having trouble finding what I'm looking for.

Any help would be massively appreciated :)

like image 836
Geoff Avatar asked Nov 04 '22 23:11

Geoff


1 Answers

The service and the app need to have the same sharedUserId in the manifest and be signed with the same key. Then the app and service can share eachothers assests, classloader and even run on the same thread. I have never included part of the GUI in a service, so maybe that is a limitation...not sure.

If there is a limitation, you must be able to work around it. Look at OpenIntents. It is open source, it is a service and you can download that from the Market. It provides a GUI file browser to any app that uses its intents.

Didn't full understand what you needed, but thought this might help.

like image 109
corbin Avatar answered Nov 14 '22 23:11

corbin