- Home /
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. https://github.com/playgameservices/play-games-plugin-for-unity/issues/216 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);
}
});
}
}
Answer by Karthikeyanglobe · Jan 10, 2017 at 06:23 PM
Remove all account in Gmail except one account for testing purpose then check that working
Answer by Raf_230 · Feb 26, 2019 at 02:17 PM
[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]
Your answer
Follow this Question
Related Questions
Networking already instantiated assets 1 Answer
How to synchronize disable and enabling game objects over the network? 0 Answers
Unity 5.4 UNET ID 0 Answers
Player interaction in multiplayer. 0 Answers
Unet Client disconnect Crc Mismatch 1 Answer