如何从命令行生成android debug.keystore?

时间:2022-04-04 07:08:02

I'm using a GUI-less linux so I can't use Eclipse to generate one for me.

我正在使用无GUI的Linux,因此我无法使用Eclipse为我生成一个。

1 个解决方案

#1


15  

look at Android's documentation for creating a keystore using keytool. They provide an example command:

查看Android的文档,了解如何使用keytool创建密钥库。它们提供了一个示例命令:

$ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

Edit: Sorry, I read too quickly. If you want to use a debug keystore from the command line, you need to compile using "ant".

编辑:对不起,我看得太快了。如果要从命令行使用调试密钥库,则需要使用“ant”进行编译。

#1


15  

look at Android's documentation for creating a keystore using keytool. They provide an example command:

查看Android的文档,了解如何使用keytool创建密钥库。它们提供了一个示例命令:

$ keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000

Edit: Sorry, I read too quickly. If you want to use a debug keystore from the command line, you need to compile using "ant".

编辑:对不起,我看得太快了。如果要从命令行使用调试密钥库,则需要使用“ant”进行编译。