预启动报告需要用户名资源 ID 和密码资源 ID 进行 Firebase 身份验证

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

我在我的 Android 应用程序中使用 Firebase 身份验证。 我想在 Play 控制台中运行 Google Pre Launch 的报告测试来识别问题。 根据需要,我尝试添加测试帐户凭据。 它要求我输入用户名、用户名资源ID、密码、密码资源ID

enter image description here 我在输入测试帐户的用户名和密码时没有任何问题。但是在用户名资源 ID 和密码资源 ID 中输入什么,因为布局是由 Firebase 生成的,而且我没有它们的资源 id。

android firebase firebase-authentication google-play-console
1个回答
0
投票

Firebase UI 邮件密码身份验证提供程序中电子邮件和密码字段的资源 ID 可以从库的源代码中检索。

https://github.com/firebase/FirebaseUI-Android

查看 auth/src/main/java/com/firebase/ui/auth/ui/email/CheckEmailFragment.java

R.id.电子邮件

查看 auth/src/main/java/com/firebase/ui/auth/ui/email/WelcomeBackPasswordPrompt.java

R.id.密码

必须指定两个资源 ID,跳过 R.id 部分。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.