我正在使用这个库进行深度链接是我的 React Native 应用程序(仅涉及 IOS)
如果未安装该应用程序,它将成功打开apple store
.
但问题是即使安装了应用程序,它也会打开apple store
withopen
按钮。
这是我的代码
AppLink.maybeOpenURL('my apple store app', { appName: 'xxxxx', appStoreId: 'xxxxxx', appStoreLocale: 'xxxxxx', playStoreId: undefined }).then(() => {
// do stuff
})
.catch((err) => {
// handle error
});
我做错了什么吗?