Book Image

Corona SDK Mobile Game Development: Beginner's Guide

By : Michelle M Fernandez
Book Image

Corona SDK Mobile Game Development: Beginner's Guide

By: Michelle M Fernandez

Overview of this book

Table of Contents (19 chapters)
Corona SDK Mobile Game Development Beginner's Guide Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – signing your app for the Google Play Store


The Android system requires all the installed applications to be digitally signed with a certificate whose private key is held by the application's developer. The Android system uses the certificate as a means of identifying the author of an application and establishing a relationship of trust between applications. The certificate is not used to control which applications the user can install. The certificate does not need to be signed by a certificate authority; it can be self-signed. Certificates can be signed on either Mac or Windows systems.

  1. On the Mac, go to Applications | Utilities | Terminal. On Windows, go to Start Menu | All Programs | Accessories | Command Prompt. Using the keytool command, add in the following lines and press Enter:

    keytool -genkey -v -keystore my-release-key.keystore -alias aliasname -keyalg RSA -validity 999999
    

    Note

    Replace my-release-key with the name of your application and aliasname with a similar...