如何在 Delphi 中使用自定义 debug.keystore?
我们经常需要在库(例如 Facebook SDK 或 Firebase)中设置 debug.keystore
指纹。
然而,据我了解,这个文件是唯一的,并且为每个用户甚至每个版本的 Delphi 生成。因此,对于团队中的每个 Delphi 更新或新用户,我们都需要在我们使用的每个 API 中记录和更新指纹。
有什么方法可以在项目设置中指定我们想要使用的确切 debug.keystore
文件(用于调试)。
We often need to set debug.keystore
fingerprint in libraries (like Facebook SDK or Firebase).
However, as I understand this file is unique and generated for each user and even for each version of Delphi. So for every Delphi update or new user in the team we need to log and update the fingerprint in every API we use.
Is there any way we can specify in project settings exact debug.keystore
file we want to use (for debugging).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Delphi 没有设置允许您指定
debug.keystore
的位置。它使用位于
C:\Users\YOURUSERNAME\AppData\Roaming\Embarcadero\BDS\19.0
中的文件,您必须手动将要使用的文件复制到该位置(使用适当的版本号 - 以上路径是德尔福东京)。此外,从一个版本升级到另一版本时,只需将现有文件复制到适合新版本的位置。
您还可以在使用不同计算机的内部开发人员之间自由共享相同的
debug.keystore
。Delphi does not have setting allowing you to specify location of
debug.keystore
.It uses file located in
C:\Users\YOURUSERNAME\AppData\Roaming\Embarcadero\BDS\19.0
You have to manually copy file you want to use into that location (use appropriate version number - above path is for Delphi Tokyo). Also when upgrading from one version to another just copy existing file to location appropriate for new version.
Yo can also freely share same
debug.keystore
among internal developers using different computers.