There is application A, in it the standard activity com.example.messer.myapplicationa
There is application B, there is also standard activity com.example.messer.myapplicationb
You need to send a string from A to B
Intent i = new Intent(com.example.messer.myapplicationb); i.putExtra("string", editText.getText()); startActivityForResult(i,1);
What to transfer to the intent? I can not find in any way