Posts

Showing posts with the label APK

[Android] Signing certificates for clients in Android

Image
Signing certificates for Android apps are a seemingly simple thing, but it can get a little more complicated when you develop apps for a client. If you’re not familiar with signing, you may want to read Google’s instructions on signing Android apps . Read on for a few things to look out for when you build apps for a client. Why signing keys are important First, the obligatory reminder: Back up your keystore–without it, you can never update an app on Google Play again. You would need to create a new app and start over. This is because once an app is released to Google Play, all future updates must be signed with the exact same signing certificate. No exceptions, no excuses. Now, backing up your keystore may be easy when you’re developing apps for yourself, but what about when you’re building apps for a client? What if you have a very large number of clients, each with a different certificate? The same rules a...