I have two separate android apps, AppA and AppB. I am trying to get AppA to launch AppB (which is a game app). After the user is done playing the game (AppB), it will send t
Try this:
AppA's AndroidManifest.xml:
. . .
Then to send data to app a activity from app b, do this:
Intent i = new Intent(); i.setAction("com.joy.AppA.views.activities.LAUNCH_IT"); i.putExtra("gameRecord", gameRecord_array); startActivity(i);