Всем доброго дня.
Есть приложение на двух платформах Andoid и iOS.
Хочу реализовать возможность приглашения с Andoid на iOS, но не знаю как 
это сделать.
вот что есть в описание:
If you have an iOS version of your app and you want to send an invitation 
that can be opened on iOS in addition to Android, call 
setOtherPlatformsTargetApplication 
<https://developers.google.com/android/reference/com/google/android/gms/appinvite/AppInviteInvitation.IntentBuilder#setOtherPlatformsTargetApplication(int,
 
java.lang.String)> when you build the app invitation intent. For example:

Intent intent = new 
AppInviteInvitation.IntentBuilder(getString(R.string.invitation_title))
    ...
    .setOtherPlatformsTargetApplication(
        AppInviteInvitation.IntentBuilder.PlatformMode.PROJECT_PLATFORM_IOS,
        getString(R.string.ios_app_client_id))
    ...

    .build();                                                               
                                                                            
                                                      
 Где-то мне попадалось что оба приложения должны быть объединены  в консоли 
разработчика.

Кто-нибудь может мне в этом помочь ? 

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/c6bf3fd8-a0b5-4ee7-954f-a09f2b5ff588%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to