Hi,

I have two packages and would like to share activities and Services
between them. The following is what I have:

package1 -- com.android.rk1
This package consists of a service by the name "RKService1".

package2 -- com.android.rk2
This package consists of a service by the name "RKService2".

Now, from an activity of package2, I can call the service RKService2.
Intent serv = new Intent(this,RKTestService2.class);

But, I am not able to call RKService1 even after importing package1.

To begin with, I am seeing the compilation error:
"package com.android.rk1 does not exist"
where my import line says ..
"import com.android.rk1.RKService1;"

Any pointers will be appreciated.

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

Reply via email to