I want to startActivityForResult with a custom Intent's, but I think react native doesn't supported it.
what is the best solution to implement it?
my startActivityForResult function:
Intent intent = new Intent(Intent.ACTION_MAIN); // set payment parameters
intent.setComponent(new ComponentName(pakageName, "wish.*.*"));
intent.putExtra("paymentId", paymentId);
this.getActivity().startActivityForResult(intent,RETURN_PAYMENT);