how could I open another app with action: "ACTION_EDIT" on Android. actually I wanna use below android code on react-native.
Intent intent = new Intent(Intent.ACTION_EDIT); intent.setData(Uri.parse("bazaar://details?id=" + PACKAGE_NAME)); intent.setPackage("com.farsitel.bazaar"); startActivity(intent);
how could I open another app with action: "ACTION_EDIT" on Android. actually I wanna use below android code on react-native.