无法获取 flutter 应用程序的 SHA-1 密钥

问题描述 投票:0回答:3

我正在开发一个 flutter 应用程序,想要使用 google 登录,为此,我需要我的应用程序 SHA-1 密钥。

如何获取钥匙的说明这里

但是当我运行命令时

./gradlew signingReport

我收到错误:-

    Starting a Gradle Daemon, 2 stopped Daemons could not be reused, use --status for details

    FAILURE: Build failed with an exception.

    * What went wrong:
    Unable to start the daemon process.
    This problem might be caused by incorrect configuration of the daemon.
    For example, an unrecognized jvm option is used.
    Please refer to the User Manual chapter on the daemon at https://docs.gradle.org/5.6.2/userguide/gradle_daemon.html
    Process command line: C:\Program Files (x86)\Java\jre1.8.0_241\bin\java.exe -Xmx1536M -Dfile.encoding=windows-1252 -Duser.country=US -Duser.language=en -Duser.variant -cp E:\Users\rasku\.gradle\wrapper\dists\gradle-5.6.2-all\9st6wgf78h16so49nn74lgtbb\gradle-5.6.2\lib\gradle-launcher-5.6.2.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 5.6.2
    Please read the following process output to find out more:
    -----------------------
    Error occurred during initialization of VM
    Could not reserve enough space for 1572864KB object heap


    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

    * Get more help at https://help.gradle.org

我是应用程序签名和谷歌登录的新手。有什么问题以及如何获取应用程序的 SHA-1 密钥?

android flutter key sha1
3个回答
2
投票

获取调试证书指纹:

对于 Linux/mac,打开终端并运行

keytool -list -v \
-alias androiddebugkey -keystore ~/.android/debug.keystore

适用于窗户

keytool -list -v \
-alias androiddebugkey -keystore %USERPROFILE%\.android\debug.keystore

参考链接


0
投票

执行以下步骤:

  1. 确保您已通过此链接

    安装了Java jdk
  2. 将此路径添加到您的环境路径中 C:\Program Files\Java\jdk1.8.0_202 中

  3. 重启Android studio

  4. 在终端中运行此命令

    keytool -list -v -keystore "C:\Users{您的用户名}.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android


0
投票
  • 尝试:

使用 --stacktrace 选项运行以获取堆栈跟踪。 使用 --info 或 --debug 选项运行以获得更多日志输出。 使用 --scan 运行以获得完整的见解。

999 毫秒内构建失败

PS D:\flutter\location\firebase_gogl_login\android> 
© www.soinside.com 2019 - 2024. All rights reserved.