我在Android应用中添加了Firebase应用邀请。 我正确设置AppInviteInvitation.IntentBuilder追加:
.setOtherPlatformsTargetApplication(AppInviteInvitation.IntentBuilder.PlatformMode.PROJECT_PLATFORM_IOS, "xxxxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com")
邀请已成功发送,但如果我使用iOS设备打开邮件,则安装链接无效! 他们被定向到Google Plus页面,错误404。
解决
我不在我的项目中使用深层链接,但Firebase也需要。 我添加了一行:
.setDeepLink(Uri.parse(getString(R.string.app_name)))
和邀请现在也适用于其他平台。