Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unable to retrieve application xxxxxxxxxxxx from network #1292

Closed
anil40 opened this issue Jul 25, 2016 · 1 comment
Closed

unable to retrieve application xxxxxxxxxxxx from network #1292

anil40 opened this issue Jul 25, 2016 · 1 comment

Comments

@anil40
Copy link

@anil40 anil40 commented Jul 25, 2016

Trying to use google play services v- 0.9.34 on unity 5.3 but when I try to sign In google play pop up open and then stop.

Error in log cat :- "Unable to retrieve application xxxxxxxxxxxx from network. Application ID xxxxxxxxxxxx is not associated with package com.company.game. Check the application ID in your manifest."

I already spent a lot time to get any solution, but I didn't found any solution. Any type of help really appreciate

Already checked these:

  1. #216
  2. Google Play Game Services - unable to sign in
  3. Google Play Games login fails

`public class FruitLevelSelect : MonoBehaviour {

private string leaderbord = "xxxxxxxxxxxxxxxxx";

void Start()
{
PlayGamesPlatform.DebugLogEnabled = true;
GooglePlayGames.PlayGamesPlatform.Activate();

Social.localUser.Authenticate((bool success) => {
    // handle success or failure
});

}

public void Share()
{
if (Social.localUser.authenticated)
{
((PlayGamesPlatform)Social.Active).ShowLeaderboardUI(leaderbord);
}
else {
Social.localUser.Authenticate((bool success) => {
if (success)
{
((PlayGamesPlatform)Social.Active).ShowLeaderboardUI(leaderbord);
}
});
}
}`

@claywilkinson
Copy link

@claywilkinson claywilkinson commented Jan 4, 2017

This message usually appears when you need to (re-)run setup for the plugin at Window > Google Play Games > Setup > Android Setup...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants