Unable to retrieve application from network

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. Sign in problem Android · Issue #216 · playgameservices/play-games-plugin-for-unity · GitHub 2. Google Play Game Services - unable to sign in 3. Google Play Games login fails

Script :

using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
using UnityEngine.UI;
using GooglePlayGames;
using UnityEngine.SocialPlatforms;
using GooglePlayGames.BasicApi;

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);
            }
        });
    }
}

Remove all account in Gmail except one account for testing purpose then check that working

[Solved]

  1. Add Your account in Tester panel (Google Play console => Game Service => Testing)
  2. Make sure you have log in Google play service app in your mobile with same account which is added in Tester panel

[Note : You can add Multiple account in your Testing panel]