是否可以仅使用需要打开的应用程序的捆绑软件ID在我的应用程序中打开另一个应用程序?如果是,该怎么办?
答案 0 :(得分:1)
您无法在应用内打开其他应用,但可以重定向到其他应用(第三方应用),例如whatsapp,instagram或任何其他应用
const url = 'whatsapp://';
Linking.canOpenURL(url).then(supported=> {
if (!supported) {
console.log('Can\'t handle url: ' + url);
}else{
return Linking.openURL(url);
}
}).catch(err =>
console.error('An error occurred', err));