1

i have implemented Google App Invite in iOS. Code :

self.inviteDialog = [GINInvite inviteDialog];
[self.inviteDialog setInviteDelegate: self];
NSString* message = [NSString stringWithFormat:@"Message",
                     [[GIDSignIn sharedInstance] currentUser].profile.name];
[self.inviteDialog setMessage: message];
[self.inviteDialog setTitle: @"App"];
[self.inviteDialog open];

I am able to send the email but SMS are not getting sent.

When i enter a phone number "MFMessageComposeViewController" opens with text :

"Message Link" but then SMS is not getting sent.

Please help

Ruby
  • 101
  • 9
  • Possible duplicate of [google app invite - sms are not sent](http://stackoverflow.com/questions/32713748/google-app-invite-sms-are-not-sent) – Oleg Cherr Feb 25 '16 at 05:42

1 Answers1

0

SMS messages are not sent when the message text contains some "more special" characters.

Try to use less number of symbols.

Try to reduce Message length.

Suraj Sukale
  • 1,778
  • 1
  • 12
  • 19