Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by ShErIn__BiNu · Sep 14, 2016 at 12:24 PM · androidgoogle play games

Cant sign in from my build to google play

I have integrated Google Play Services to my game and when I build the app, run it on my device, I cant log in to Google Play

using UnityEngine;

using System.Collections;

using GooglePlayGames; using GooglePlayGames.BasicApi; using UnityEngine.SocialPlatforms; using System.Collections.Generic; using UnityEngine.UI; public class LBDemo : MonoBehaviour { public string leaderboard; public Text loginText; public Text leaderboardText; public Text logoutText; void Start () { PlayGamesClientConfiguration config = new PlayGamesClientConfiguration (); PlayGamesPlatform.InitializeInstance (config); PlayGamesPlatform.Activate (); PlayGamesPlatform.DebugLogEnabled = true; logoutText.text = "initialized";

 }
 public void LogIn ()
 {
     Social.localUser.Authenticate ((bool success) =>
         {
             if (success) {
                 loginText.text = "Login success";
             } else {
                 loginText.text = "Login failed";
             }
         });
 }
 public void OnShowLeaderBoard ()
 {
     if (Social.localUser.authenticated) {
         Social.ShowLeaderboardUI (); // Show all leaderboard
         //((PlayGamesPlatform)Social.Active).ShowLeaderboardUI (leaderboard); // Show current (Active) leaderboard
     } else {
         leaderboardText.text = "Login Failed";
     }
 }
 public void OnAddScoreToLeaderBorad (long score)
 {
     if (Social.localUser.authenticated) {
         Social.ReportScore (score, leaderboard, (bool success) =>
             {
                 if (success) {
                     Debug.Log ("Update Score Success");

                 } else {
                     Debug.Log ("Update Score Fail");
                 }
             });
     }
 }
 public void OnLogOut ()
 {
     ((PlayGamesPlatform)Social.Active).SignOut ();
 }

}

[1]: /storage/temp/78125-ss3.jpg

[2]: /storage/temp/78124-ss1.jpg

ss1.jpg (61.7 kB)
ss3.jpg (59.1 kB)
Comment
Add comment · Show 2
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image ShErIn__BiNu · Sep 13, 2016 at 05:30 AM 0
Share

Given image is when I open the game

avatar image ShErIn__BiNu · Sep 13, 2016 at 05:34 AM 0
Share

The second image after I sign in to Google Play

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Google Game Services Not workng 0 Answers

Social.localUser.Authenticate((bool success) returns no bool 1 Answer

C# function continues without waiting for called Google Play method to complete 1 Answer

iOS Game Center & Android Game Center "Play Games" 1 Answer

Unable to convert classes into dex format, with no duplicate .jar files 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges