What do you mean by "invoking an apk"? An APK file is essentially a zip
file, normally used to package android applications, and contains the code
and resources for any number of activities, services, broadcastreceivers,
etcetera.
Do you want to run an activity from that other apk? Run a service? Trigger a
broadcastreceiver?
In any case, you're going to have to install that apk on the system first,
just like you would install any other application. Once that is done, you
can run the activity/service/etc the same way you would normally do, e.g. by
calling startActivity, bindService, sendBroadcast, etc.



On Thu, May 7, 2009 at 7:37 AM, Asif k <[email protected]> wrote:

>
> Hi all,
>
>   I want to invoke musicplayer.apk(this .apk I have already created
> and working fine) application from my current application
> programmatically. Can anyone please suggest me how to export
> musicplayer.apk and the steps to accomplish this task?
>
>   Please help. Thanks in advance.
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to