Get high quality profile picture from GoogleSignInAccount
问题 In my Android application in order to authenticate through the google account , I follow this official tutorial https://developers.google.com/identity/sign-in/android/people#retrieve_profile_information_for_a_signed-in_user and it works. As stated there, to retrieve the profile picture I use " getPhotoUrl() " method of "GoogleSignInAccount" class. Example: GoogleSignInResult result = Auth.GoogleSignInApi.getSignInResultFromIntent(data); GoogleSignInAccount acct = result.getSignInAccount();