I have firebase invitations in my application. I send invitations via mail and messages for ios and android plateforms. When I send it via messages, it works fine on both devices, it opens the application in the play store in Android and the application in the application store in iphone. But when I send invitations via mail, when I click on the installation link, it gives an error 404.
link description here
This is the link that I get when I open it in android or iphone.
This is the code I use for the invitation.
// Invite friends id<FIRInviteBuilder> inviteDialog = [FIRInvites inviteDialog]; [inviteDialog setInviteDelegate:self]; FIRInvitesTargetApplication *targetApplication = [[FIRInvitesTargetApplication alloc] init]; targetApplication.androidClientID = @"android_client_id"; [inviteDialog setOtherPlatformsTargetApplication:targetApplication]; NSString *message = [NSString stringWithFormat:SHARE_MESSAGE]; [inviteDialog setMessage:message]; [inviteDialog setTitle:@"Invite Friends"]; [inviteDialog open];
Please help me with this problem. Any help would be greatly appreciated. Thanks
source share