HarmonyOS 使用APi中方法程序不能运行?

使用如下方法:

call.makeCall('400 666 5969',(err: BusinessError) => {
  if (err) {
    console.error(`makeCall fail, err->${JSON.stringify(err)}`);
  } else {
    console.log(`makeCall success`);
  }
})

报错文本:

'makeCall' can't support crossplatform application
阅读 556