[android-developers] Re: Invoking one apk from another

2009-05-07 Thread Yusuf T. Mobile
I would recommend using Binder: http://developer.android.com/reference/android/os/IBinder.html http://mylifewithandroid.blogspot.com/2008/01/about-binders.html Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in

[android-developers] Re: Invoking one apk from another

2009-05-07 Thread Marco Nelissen
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?

[android-developers] Re: Invoking one apk from another

2009-05-07 Thread Ask
Thanks for your reply. Actually I want to call one method abc() which resides in the other application(PhoneDialer.apk) from my application (TestApp.apk) and that PhoneDialer application resides in the /data/app-private directory (means this application is not installed in the device) . This