forked from organicmaps/organicmaps
[android]: Remove Google Authorization
This old implementation of Google Auth was based on GMS and didn't work on non-Google devices. If we really want to support Google Auth, we should use Firebase Auth instead: https://firebase.googleblog.com/2020/10/firebase-auth-android-non-gms.html This patch removes the last Google Service from the project. Please add android/google-services.json if you want to build version with enabled Google Services (GMS + Firebase) for the Play Store. Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
3109bd3982
commit
5136a60e26
7 changed files with 30 additions and 112 deletions
|
@ -64,10 +64,6 @@
|
|||
tools:replace="android:supportsRtl"
|
||||
tools:ignore="UnusedAttribute">
|
||||
|
||||
<meta-data
|
||||
android:name="com.google.android.gms.version"
|
||||
android:value="@integer/google_play_services_version"/>
|
||||
|
||||
<activity
|
||||
android:name="com.mapswithme.maps.SplashActivity"
|
||||
android:label="@string/app_name">
|
||||
|
|
|
@ -58,7 +58,6 @@ dependencies {
|
|||
implementation 'androidx.multidex:multidex:' + propMultiDexVersion
|
||||
|
||||
// Google Services
|
||||
implementation 'com.google.android.gms:play-services-auth:17.0.0'
|
||||
if (googleServiceEnabled) {
|
||||
implementation 'com.google.android.gms:play-services-location:17.0.0'
|
||||
implementation 'com.google.firebase:firebase-analytics:17.4.4'
|
||||
|
|
25
android/flavors/google-services-enabled/AndroidManifest.xml
Normal file
25
android/flavors/google-services-enabled/AndroidManifest.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
<meta-data
|
||||
android:name="com.google.android.gms.version"
|
||||
android:value="@integer/google_play_services_version"/>
|
||||
|
||||
<service
|
||||
android:exported="false"
|
||||
android:name="com.mapswithme.maps.scheduling.FirebaseJobService">
|
||||
<intent-filter>
|
||||
<action android:name="com.firebase.jobdispatcher.ACTION_EXECUTE"/>
|
||||
</intent-filter>
|
||||
</service>
|
||||
|
||||
<receiver
|
||||
android:name="com.google.android.gms.gcm.GcmReceiver"
|
||||
android:exported="true"
|
||||
android:permission="com.google.android.c2dm.permission.SEND">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.android.c2dm.intent.RECEIVE"/>
|
||||
<category android:name="${applicationId}"/>
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
</manifest>
|
|
@ -2,8 +2,8 @@ propMinSdkVersion=21
|
|||
propTargetSdkVersion=29
|
||||
propCompileSdkVersion=29
|
||||
propBuildToolsVersion=27.0.3
|
||||
propVersionCode=1056
|
||||
propVersionName=10.5.6
|
||||
propVersionCode=1057
|
||||
propVersionName=10.5.7
|
||||
propDebugNdkFlags=V=1 NDK_DEBUG=1 DEBUG=1
|
||||
propReleaseNdkFlags=V=1 NDK_DEBUG=0 PRODUCTION=1
|
||||
propMultiDexVersion=2.0.1
|
||||
|
|
|
@ -81,25 +81,6 @@
|
|||
android:textAppearance="@style/MwmTextAppearance.Body3.Primary"
|
||||
android:text="@string/sign_agree_news_gdpr"/>
|
||||
</LinearLayout>
|
||||
<TextView
|
||||
android:id="@+id/google_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:foreground="?clickableBackground"
|
||||
android:background="?ghostButtonBackground"
|
||||
android:textColor="?ghostButtonTextColor"
|
||||
android:drawableStart="@drawable/img_google"
|
||||
android:paddingLeft="@dimen/margin_half_plus"
|
||||
android:paddingStart="@dimen/margin_half_plus"
|
||||
android:paddingRight="@dimen/margin_base_plus"
|
||||
android:paddingEnd="@dimen/margin_base_plus"
|
||||
android:textAppearance="@style/MwmTextAppearance.Body3.Primary"
|
||||
android:fontFamily="@string/robotoMedium"
|
||||
android:text="@string/google"
|
||||
android:gravity="center"
|
||||
android:minHeight="@dimen/primary_button_min_height"
|
||||
android:layout_marginTop="@dimen/margin_base"
|
||||
tools:targetApi="jelly_bean"/>
|
||||
<TextView
|
||||
android:id="@+id/phone_button"
|
||||
android:layout_width="match_parent"
|
||||
|
|
|
@ -1,58 +0,0 @@
|
|||
package com.mapswithme.maps.auth;
|
||||
|
||||
import android.content.Intent;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import android.text.TextUtils;
|
||||
|
||||
import com.google.android.gms.auth.api.signin.GoogleSignIn;
|
||||
import com.google.android.gms.auth.api.signin.GoogleSignInAccount;
|
||||
import com.google.android.gms.common.api.ApiException;
|
||||
import com.google.android.gms.tasks.Task;
|
||||
import com.mapswithme.maps.Framework;
|
||||
import com.mapswithme.util.log.Logger;
|
||||
import com.mapswithme.util.log.LoggerFactory;
|
||||
|
||||
class GoogleTokenHandler implements TokenHandler
|
||||
{
|
||||
@Nullable
|
||||
private String mToken;
|
||||
|
||||
@Override
|
||||
public boolean checkToken(int requestCode, @NonNull Intent data)
|
||||
{
|
||||
if (requestCode != Constants.REQ_CODE_GOOGLE_SIGN_IN)
|
||||
return false;
|
||||
|
||||
Task<GoogleSignInAccount> task = GoogleSignIn.getSignedInAccountFromIntent(data);
|
||||
try
|
||||
{
|
||||
GoogleSignInAccount account = task.getResult(ApiException.class);
|
||||
if (account != null)
|
||||
mToken = account.getIdToken();
|
||||
return !TextUtils.isEmpty(mToken);
|
||||
}
|
||||
catch (ApiException e)
|
||||
{
|
||||
// The ApiException status code indicates the detailed failure reason.
|
||||
// Please refer to the GoogleSignInStatusCodes class reference for more information.
|
||||
Logger logger = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
||||
logger.w(GoogleTokenHandler.class.getSimpleName(),
|
||||
"signInResult:failed code=" + e.getStatusCode());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
@Override
|
||||
public String getToken()
|
||||
{
|
||||
return mToken;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getType()
|
||||
{
|
||||
return Framework.SOCIAL_TOKEN_GOOGLE;
|
||||
}
|
||||
}
|
|
@ -16,11 +16,7 @@ import androidx.annotation.IdRes;
|
|||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
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.mapswithme.maps.Framework;
|
||||
import com.mapswithme.maps.PrivateVariables;
|
||||
import com.mapswithme.maps.R;
|
||||
import com.mapswithme.maps.base.BaseMwmDialogFragment;
|
||||
import com.mapswithme.util.UiUtils;
|
||||
|
@ -35,12 +31,9 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
|
|||
{
|
||||
private static final Logger LOGGER = LoggerFactory.INSTANCE.getLogger(LoggerFactory.Type.MISC);
|
||||
private static final String TAG = SocialAuthDialogFragment.class.getSimpleName();
|
||||
@SuppressWarnings("NullableProblems")
|
||||
@NonNull
|
||||
private GoogleSignInClient mGoogleSignInClient;
|
||||
@NonNull
|
||||
private final List<TokenHandler> mTokenHandlers = Arrays.asList(
|
||||
new GoogleTokenHandler(), new PhoneTokenHandler()
|
||||
new PhoneTokenHandler()
|
||||
);
|
||||
@Nullable
|
||||
private TokenHandler mCurrentTokenHandler;
|
||||
|
@ -49,18 +42,7 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
|
|||
{
|
||||
PhoneAuthActivity.startForResult(this);
|
||||
};
|
||||
@NonNull
|
||||
private final View.OnClickListener mGoogleClickListener = new View.OnClickListener()
|
||||
{
|
||||
@Override
|
||||
public void onClick(View v)
|
||||
{
|
||||
Intent intent = mGoogleSignInClient.getSignInIntent();
|
||||
startActivityForResult(intent, Constants.REQ_CODE_GOOGLE_SIGN_IN);
|
||||
}
|
||||
};
|
||||
@SuppressWarnings("NullableProblems")
|
||||
@NonNull
|
||||
private CheckBox mPrivacyPolicyCheck;
|
||||
@SuppressWarnings("NullableProblems")
|
||||
@NonNull
|
||||
|
@ -85,11 +67,6 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
|
|||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
setTargetCallback();
|
||||
GoogleSignInOptions gso = new GoogleSignInOptions.Builder(GoogleSignInOptions.DEFAULT_SIGN_IN)
|
||||
.requestIdToken(PrivateVariables.googleWebClientId())
|
||||
.requestEmail()
|
||||
.build();
|
||||
mGoogleSignInClient = GoogleSignIn.getClient(requireActivity(), gso);
|
||||
}
|
||||
|
||||
private void setTargetCallback()
|
||||
|
@ -111,20 +88,19 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
|
|||
{
|
||||
View view = inflater.inflate(R.layout.fragment_auth_passport_dialog, container, false);
|
||||
|
||||
setLoginButton(view, R.id.google_button, mGoogleClickListener);
|
||||
setLoginButton(view, R.id.phone_button, mPhoneClickListener);
|
||||
|
||||
mPromoCheck = view.findViewById(R.id.newsCheck);
|
||||
mPrivacyPolicyCheck = view.findViewById(R.id.privacyPolicyCheck);
|
||||
mPrivacyPolicyCheck.setOnCheckedChangeListener((buttonView, isChecked) -> {
|
||||
setButtonAvailability(view, isChecked && mTermOfUseCheck.isChecked(),
|
||||
R.id.google_button, R.id.phone_button);
|
||||
R.id.phone_button);
|
||||
});
|
||||
|
||||
mTermOfUseCheck = view.findViewById(R.id.termOfUseCheck);
|
||||
mTermOfUseCheck.setOnCheckedChangeListener((buttonView, isChecked) -> {
|
||||
setButtonAvailability(view, isChecked && mPrivacyPolicyCheck.isChecked(),
|
||||
R.id.google_button, R.id.phone_button);
|
||||
R.id.phone_button);
|
||||
});
|
||||
|
||||
UiUtils.linkifyView(view, R.id.privacyPolicyLink, R.string.sign_agree_pp_gdpr,
|
||||
|
@ -133,7 +109,6 @@ public class SocialAuthDialogFragment extends BaseMwmDialogFragment
|
|||
UiUtils.linkifyView(view, R.id.termOfUseLink, R.string.sign_agree_tof_gdpr,
|
||||
Framework.nativeGetTermsOfUseLink());
|
||||
|
||||
setButtonAvailability(view, false, R.id.google_button, R.id.phone_button);
|
||||
return view;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue