Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- startSignInIntent()
- Google Play
- TensorFlow
- 구글 플레이 게임서비스
- 로그인
- 안드로이드
- GoogleSignInAccount
- signInSilently()
- tensorflow 2.15
- java
- tensorflow wsl2
- tensorflow 윈도우
- tensorflow gpu
- Google Play Game Services
Archives
- Today
- Total
목록구글 플레이 게임서비스 (1)
TYOJ
12345678910111213141516171819202122private void signInSilently() { GoogleSignInClient signInClient = GoogleSignIn.getClient(this, GoogleSignInOptions.DEFAULT_GAMES_SIGN_IN); signInClient.silentSignIn().addOnCompleteListener(this, new OnCompleteListener() { @Override public void onComplete(@NonNull Task task) { if (task.isSuccessful()) { GoogleSignInAccount signedInAccount = task.getResult(); } e..
안드로이드/Google Play
2018. 12. 15. 21:28