Hi I am new to android and I have created 2 projects.
Now I want to call an activity in the second project from the first project upon a button click.
The 1
in the map project's AndroidManifest file add your custom intent filter
from the login button call this activity like this:
Intent intent = new Intent("com.example.map.show"); startActivity(intent);