is there any way to send data from one xamarin.forms app to another xamarin.forms app. Android application the goal is only for android, while the other application is android and ios. The android application has to send data locally to android application / ios but the android application is receiving it. in my aplication android i cant open another app and send data. but i cant receveing data in my aplication. this is the code in android aplication:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName("com.companyname.Opiniao","android.intent.action.B"));
intent.putExtra(Intent.EXTRA_TEXT, editTextEmail.getText() + "\n " + editTextPassword.getText());
intent.setType("text/plain");
startActivity(intent);