FuseJS / Phone has call function only.
Can same thing as ACTION_DIAL in Fuse?
Android Source Code >
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:010-1111-2222"));
startActivity(intent);
Without using Uno
FuseJS / Phone has call function only.
Can same thing as ACTION_DIAL in Fuse?
Android Source Code >
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:010-1111-2222"));
startActivity(intent);
Without using Uno
You could use LaunchUri and pass the custom tel:...
URI scheme to it.
How that is handled depends on the target platform and device.
It’s perfect.
Thank you very much.