This question already has an answer here:
- launch activities from different package 4 answers
I have 2 android apps:
app1 - Activity11 --> Activity12 --> Activity13
app2 - Activity21 --> Activity22 --> Activity23
I want to pass from one app to the second Activity of the other one, passing some datas.
app1 - Activity11 -->(switch to app2)--> Activity22 --> Activity23
What steps have i to follow? Do you know some tutorial?
I haven't write code for now, because I don't know where to start.
Thanks in advance.
You need to look into android Intents and Intent Filters. Check this training article for example.
This blog post can also be an interesting read.
A quick example for sending text (other types are in the links on top);
And for receiving:
You'll have to update the manifest also: