Game Development Reference
In-Depth Information
Let's now create a new key store file for use in signing the project.
Here are the steps:
Create a new directory to store your key store; for instance C:\mykeys
1.
Run the command keytool to create the key store file (see Figure 10-1 ):
2.
keytool -genkey -v -keystore c:/mykeys/myappkey.keystore -alias
mykeys -keyalg RSA -keysize 2048 -validity 10000
Figure 10-1. The keystore file creation output
Now the file myappkey.keystore in the directory C:\mykeys has been created successfully.
You'll now sign the application using the new key store file you just created.
Search WWH ::




Custom Search