使用React Native在Android中使用包ID打开其他应用程序吗?

时间:2019-03-07 08:55:07

标签: android react-native react-native-android deep-linking

是否可以仅使用需要打开的应用程序的捆绑软件ID在我的应用程序中打开另一个应用程序?如果是,该怎么办?

1 个答案:

答案 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));