I will just give you a head so that you can transfer data between the two applications that you manage them, then you should use intent for example
intent.putExtra("MyData", "This is a data ");
and in your other application use this to get this data
Bundle extras = getIntent().getExtras(); if (extras != null) { String value = extras.getString("MyData"); myText.setText(value); }
source share