Obtaining a signing certificate for Android apps
Guarantee that the code and updates of your mobile app come from a legitimate source by creating a signing certificate for the Android certificate set that is required to generate an installation package for your Android app.
.p12
file that you upload to an Android certificate set
in Pega Platform.
- Open your preferred terminal tool.
For example: For Windows, open the Command Prompt application. - At the command prompt, enter and confirm the following command with variables
that match your system configuration:
<directory with your Java version installation>\bin\keytool -genkey -v -keystore <target path and name of the certificate>.p12 -alias <unique identification of the certificate in the keystore> -keyalg RSA -keysize 2048 -storetype PKCS12 -validity <number of days for which the certificate is valid>
Note: The minimum certificate validity for app distribution through Google Play is 25 years. For example: Create a uPlusExpensesCertificate.p12
file in theC:\mobile-certificates\
directory, with a certificate size of 2048 bits, and certificate validity of 10000 days. For Windows, with JRE installed inC:\Program Files\Java\jre1.8.0_202
and withC:\
as the active terminal directory, enter the following command:"Program Files"\Java\jre1.8.0_202\bin\keytool -genkey -v -keystore mobile-certificates\uPlusExpensesCertificate.p12 -alias uPlusExpenses -keyalg RSA -keysize 2048 -storetype pkcs12 -validity 10000
- At the password prompt, set and confirm the password for the keystore.
Important: This password is required in the Android certificate set in Pega Platform. - Optional: To include additional information about the certificate ownership, provide
answers to the questions in the terminal:
- For every question that you want to answer, enter your response, and
then confirm by pressing the Enter key.You can skip a question and continue to the next entry by leaving the entry blank and then pressing the Enter key.
Result: After the last question, the terminal displays a summary of your entries. - If the entries in the summary are incorrect, enter no, press the Enter key, and then repeat step 4.a.
- If the entries in the summary are correct, enter yes, and then confirm the data by pressing the Enter key.
- For every question that you want to answer, enter your response, and
then confirm by pressing the Enter key.
.p12
file with your certificate in the location that you
specified. You can upload the file to an Android certificate set in Pega Platform.Previous topic Understanding certificate sets for Android Next topic Creating an Android certificate set