I had the same problem. The manual says:
mPlusClient = new PlusClient.Builder(this, this, this) .setActions("http://schemas.google.com/AddActivity", "http://schemas.google.com/BuyActivity") .setScopes("PLUS_LOGIN") // Space separated list of scopes .build();
I changed it to this and it worked
mPlusClient = new PlusClient.Builder(this, this, this) .setActions("http://schemas.google.com/AddActivity", "http://schemas.google.com/BuyActivity") .build();
If you use Eclipse to test the application, make sure you use SHA1 finger print in the window β Preferences β Android β Build on the Google console +
source share