Torsten2217 / google-plus-platform

Automatically exported from code.google.com/p/google-plus-platform
0 stars 0 forks source link

Interactive Posts on Google play services doesn't work #714

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
On Google Nexus 4

Downloaded the lastest version of the google play services example app and 
trying to get interactive posts working.

Have changed none of the code, and followed the apis set exactly the same as 
the documentation but keep on getting 

Google Play services is invalid. Cannot recover.

And results code is equal to 0

@Override
    protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
        switch (requestCode) {
            case REQUEST_CODE_SIGN_IN:
            case REQUEST_CODE_GET_GOOGLE_PLAY_SERVICES:
                handleResult(resultCode);
                break;

            case REQUEST_CODE_INTERACTIVE_POST:
                mSharing = false;
                if (resultCode != RESULT_OK) {
                    Log.e(TAG, "Failed to create interactive post");
                }
                break;
        }
    }

Original issue reported on code.google.com by AHob...@gmail.com on 21 Nov 2013 at 9:56

GoogleCodeExporter commented 9 years ago
Jelly Bean 4.3

Original comment by AHob...@gmail.com on 21 Nov 2013 at 9:57