Invites for Android app: message failed to send with missing container client id

I’m trying to integrate the new Google Play Services apps for Android . "I followed all the steps in accordance with the manual and created the gogole-services.json file. But when I send an invitation to a selected friend via SMS or email, I get the same error every time.

 Message failed to send 

in ADB log:

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

Now it seems that my application is missing some kind of client application identifier, but it does not understand how to configure it.

+5
source share
1 answer

This is because you used the SHA1 fingerprint from the release key. But the build test that you are testing is signed with the android debug key.

+10
source

All Articles