下载了谷歌Play商店,注册成功却不能登录,与Google服务通信时出现问题。请稍后重试,我是小米
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了下载了谷歌Play商店,注册成功却不能登录,与Google服务通信时出现问题。请稍后重试,我是小米相关的知识,希望对你有一定的参考价值。
下载了谷歌Play商店,注册成功却不能登录,与Google服务通信时出现问题。请稍后重试,我是小米2s
嗨!
由于谷歌之前已经退出中国大陆市场,所以在中国大陆上市的手机均不内置google play store 以及其它的Google应用软件。谷歌相关应用程序如google play store 在中国大陆上市的手机中无法安装使用。所以一些需要谷歌服务的软件游戏无法使用,MIUI用户可以到小米应用商店下载“谷歌应用下载器”安装Google系列服务。下载地址http://app.xiaomi.com/detail/36925
参考技术A朋友! 唉! 被免被封 立改为图 被封怕了 唉...
+++ 哈 +++
追问我好像没那么多分
你的翻@墙靠谱吗
本回答被提问者采纳 参考技术B 谷歌的所有有关客户资料的软件和应用再中国都没有用。包括谷歌商店 参考技术C 删了去吧 谷歌的服务在中国一点都不好用从Play商店下载时,颤动的谷歌登录无法在发布中工作
【中文标题】从Play商店下载时,颤动的谷歌登录无法在发布中工作【英文标题】:flutter google sign in not working in release when downloading from play store 【发布时间】:2021-03-04 01:58:56 【问题描述】:我的 google 登录我的 Flutter 应用程序在 iOS 和 android 模拟器中都能完美运行,并且在从应用商店下载时在 iOS 中处于发布模式。问题是来自 Play 商店的发布 appbundle 不起作用。当我点击 google 登录按钮时,它会显示我的帐户,我选择帐户,它会通过,然后闪烁并返回主屏幕。
我已经运行 ./gradlew signingReport 并获得了调试和发布 SHA1 密钥,并将它们放在我的 firebase 控制台中。
我的应用级 build.grade 看起来像这样
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists())
localPropertiesFile.withReader('UTF-8') reader ->
localProperties.load(reader)
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null)
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null)
flutterVersionCode = '1'
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null)
flutterVersionName = '1.0'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists())
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android
compileSdkVersion 29
sourceSets
main.java.srcDirs += 'src/main/kotlin'
lintOptions
disable 'InvalidPackage'
defaultConfig
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.rnainc.edganizer_school_app"
minSdkVersion 16
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
//ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
signingConfigs
release
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
buildTypes
release
signingConfig signingConfigs.release
aaptOptions cruncherEnabled = false
// need either some or all of the following 4 lines to make sure the app actually launches when downloaded from the play store, otherwise it crashes upon installation
minifyEnabled false
useProguard false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
flutter
source '../..'
dependencies
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.android.support:multidex:1.0.3'
apply plugin: 'com.google.gms.google-services'
configurations.all
resolutionStrategy
force 'com.google.android.gms:play-services-location:15.0.0'
这是我的android级别的build.grade,如你所见,我尝试了多个版本,3.6.4、4.0.1、4.1.0,都是同样的问题。我已经尝试过其他的事情,比如更新到所有 firebase 插件的最新版本,flutter clean。但仍然是同样的问题。我还在我的 GCP 控制台中检查了 GCP OAuth 2.0 客户端 ID,它显示了为我制作的两个证书(当我将 SHA1 密钥添加到 firebase 时自动生成)。
我真的不知道我还能做些什么来让它工作,不知道问题出在哪里。
buildscript
ext.kotlin_version = '1.3.50'
repositories
google()
jcenter()
dependencies
//classpath 'com.android.tools.build:gradle:4.0.1'
//classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:3.6.4'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:4.3.4'
allprojects
repositories
google()
jcenter()
rootProject.buildDir = '../build'
subprojects
project.buildDir = "$rootProject.buildDir/$project.name"
subprojects
project.evaluationDependsOn(':app')
task clean(type: Delete)
delete rootProject.buildDir
【问题讨论】:
【参考方案1】:您需要复制在 play console 中生成的新 SHA-1 并将其添加到 firebase / GCP
【讨论】:
天啊,这么简单啊!你太棒了!那行得通。只是为了让我学习,你能和我分享一下这是在文档中的任何地方写的吗?我以为我阅读了所有我能拿到的东西,但不知道我必须这样做。谢谢 酷!我不知道它在文档中写在哪里。我曾经遇到过这个问题,经过大量搜索后,我只通过***获得了解决方案! ***.com/questions/39318370/…【参考方案2】:要在没有 firebase 的情况下实施,请尝试使用签证 - https://github.com/e-oj/visa
这是一个 Facebook auth 的例子(它也支持 google):
import 'package:visa/auth-data.dart';
import 'package:visa/fb.dart';
class AuthPage extends StatelessWidget
@override
Widget build(BuildContext context)
return Scaffold(
/// Simply Provide all the necessary credentials
body: FaceBookAuth().visa.authenticate(
clientID: '139732240983759',
redirectUri: 'https://www.e-oj.com/oauth',
scope: 'public_profile,email',
state: 'fbAuth',
onDone: done
)
);
以及“完成”回调:
done(AuthData authData)
print(authData);
/// You can pass the [AuthData] object to a
/// post-authentication screen. It contaions
/// all the user and OAuth data collected during
/// the authentication process. In this example,
/// our post-authentication screen is "complete-profile".
Navigator.pushReplacementNamed(
context, '/complete-profile', arguments: authData
);
【讨论】:
以上是关于下载了谷歌Play商店,注册成功却不能登录,与Google服务通信时出现问题。请稍后重试,我是小米的主要内容,如果未能解决你的问题,请参考以下文章