Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2018-04-15 13:45:49 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2018-04-16 11:55:04 +0300
commitb08f15ad6aeba95f24643a292997649bf35509e6 (patch)
tree20d264d9b9df0289c2745b5f4e186c34293dd826 /android/src
parentd2b81dc0fc162123c26ab73071b4448fef4c59ac (diff)
[android] Customized the google button in auth dialog
Diffstat (limited to 'android/src')
-rw-r--r--android/src/com/mapswithme/maps/auth/SocialAuthDialogFragment.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/android/src/com/mapswithme/maps/auth/SocialAuthDialogFragment.java b/android/src/com/mapswithme/maps/auth/SocialAuthDialogFragment.java
index 9d6bb70a0f..2ed8411492 100644
--- a/android/src/com/mapswithme/maps/auth/SocialAuthDialogFragment.java
+++ b/android/src/com/mapswithme/maps/auth/SocialAuthDialogFragment.java
@@ -22,7 +22,6 @@ import com.facebook.login.widget.LoginButton;
import com.google.android.gms.auth.api.signin.GoogleSignIn;
import com.google.android.gms.auth.api.signin.GoogleSignInClient;
import com.google.android.gms.auth.api.signin.GoogleSignInOptions;
-import com.google.android.gms.common.SignInButton;
import com.mapswithme.maps.Framework;
import com.mapswithme.maps.PrivateVariables;
import com.mapswithme.maps.R;
@@ -117,7 +116,7 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
{
View view = inflater.inflate(R.layout.fragment_auth_passport_dialog, container, false);
- SignInButton googleButton = view.findViewById(R.id.google_button);
+ View googleButton = view.findViewById(R.id.google_button);
googleButton.setOnClickListener(mGoogleClickListener);
LoginButton facebookButton = view.findViewById(R.id.facebook_button);