Android 应用的发布密钥库位于何处?
Where is the release keystore located for Android apps?
我正在按照本教程创建回合制多人游戏:https://developers.google.com/games/services/console/enabling
在指定客户端 ID 设置部分下,他们说 运行:
keytool -list -keystore [path-to-debug-keystore]
很好,因为他们还提到了调试密钥库的位置:"On Windows, the debug keystore can be found at C:\Users[USERNAME].android\debug.keystore."
他们还对 运行 这个命令说:
keytool -list -keystore [path-to-production-keystore]
但他们没有提到 release/production 密钥库在哪里。
...它在哪里?
您自己生成生产密钥。阅读 android 开发人员文档中的 Sign Your App。
我正在按照本教程创建回合制多人游戏:https://developers.google.com/games/services/console/enabling
在指定客户端 ID 设置部分下,他们说 运行:
keytool -list -keystore [path-to-debug-keystore]
很好,因为他们还提到了调试密钥库的位置:"On Windows, the debug keystore can be found at C:\Users[USERNAME].android\debug.keystore."
他们还对 运行 这个命令说:
keytool -list -keystore [path-to-production-keystore]
但他们没有提到 release/production 密钥库在哪里。
...它在哪里?
您自己生成生产密钥。阅读 android 开发人员文档中的 Sign Your App。