I am new to android and I have a question I tried to launch an activity from an application (say App B) from another application (say App A) using this code:
Intent i = new Intent();
i.setComponent(new ComponentName("com.me.b","com.me.b.MainActivity"));
startActivity(i);
This is working fine but my question is : Why can't I call another activity from B except for its launcher?? Is ther any other way to launch B's other activities from A ?? Thanks in advance ...