Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Invites for Android: Message failed to send with missing container client ID

I am trying to integrate new Google Play Services api "App Invites for Android". I followed all the steps as per guide and generated the gogole-services.json file. But when I send an invite to a selected friend via SMS or Email, I get the same error everytime.

Message failed to send

on ADB log getting this:

E/AppInviteAgent﹕ generic::13: generic::INTERNAL: java.lang.IllegalArgumentException: Request must associate a valid container client application ID.

Now it seems my app is missing some sort of client app ID but not getting any clue how to configure it.

like image 705
dhaval Avatar asked Jun 02 '15 11:06

dhaval


1 Answers

This happens because you used the SHA1 fingerprint from your release key. But the build you test is signed with the android debug key.

like image 191
drindt Avatar answered Nov 14 '22 21:11

drindt