My application has 2 packages because one is shared with my other
applications.
I want to start an activity of the shared package.
I tried the following:
   Intent intent = new Intent();
   intent.setClassName(shardedPackageName,sharedActivityName);
   startActivity(intent);

It throws an ActivityNotFoundException and suggests that the activity
might not
be in the manifest.  But how do I list an acitivity from another
package in the manifest?

--~--~---------~--~----~------------~-------~--~----~
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