Skip to main content

Android Keystore File

  1. Make sure the machine you are working on has JAVA installed. brew install java
  2. Generate a keystore file with the command below:
keytool -genkey -v -keystore [keystore_name].keystore -alias [alias_name] -keyalg RSA -keysize 2048 -validity 10000

# Example:
keytool -genkey -v -keystore cornerstone.keystore -alias cornerstone -keyalg RSA -keysize 2048 -validity 10000
  1. Copy the generated keystore file into the client folder.