I have splitted my Android project in 2 packages, lets say:
test.current and test.another.
>From an activity in test.current I want to start an activity in the
package test.another

Intent i = new Intent();
        i.setClassName("test.another", "test.another.MyActivity");
        startActivity(i);

But I got ActivityNotFoundException.
The essential parts of my manifest looks like this:
<manifest xmlns:android="http://schemas.android.com/apk/res/android";
      package="test.current"
...
<activity
            android:name="test.another.MyActivity"
            android:exported="true">
...

Please help.

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