如何直接在苹果商店打开我的应用程序?我已经尝试过这个,但它会打开itunes应用程序而不是苹果商店应用程序
Linking.openURL(
'itms-apps://apps.apple.com/id/app/halojasa/id1492671277?l=id'
).catch(err => {
console.log('Error from rate us ', err)
})
Run Code Online (Sandbox Code Playgroud) 我们正在使用react-native 开发一个iOS 应用程序。每次开发人员有更新时,开发人员都需要在 QA 手机上构建并安装以进行测试。
现在,我正在尝试使用 fastlane 和 firebase 应用程序分发来分发新的应用程序以进行质量检查。
当我创建新版本时,QA 收到了有关该问题的电子邮件通知,他们可以在 firebase 应用程序分发上检查它。但是没有下载和安装的按钮,只有这样的消息。
Device registered!
The developer now needs to update their app to run on your device. You'll get an email when the app is ready to test.
Run Code Online (Sandbox Code Playgroud)
如何使其可供下载?
我尝试使用包 uuid 并响应本机获取随机值来创建随机 uuid。一切都很好,工作正常。但是,当我尝试使用 jest 运行我的测试文件时,出现错误无法读取未定义的属性“getRandomBase64”。如何解决这个错误?
谢谢。