Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Same Keystore for different app [duplicate]

I have used always the same keystore and same alias key for all published app...

This is a right choice, or Should I use a different alias for each published app?

I haven't find really clear informations about the right use of keystore.

like image 243
Asgard Avatar asked Oct 23 '12 04:10

Asgard


3 Answers

Keystore file, or signing of the apps, represent that some developer or company certify that application has been developed or verified by that particular company or developer, not the application itself.

So, as far you are developing the app, with name of your company, or yours, you should sign app with same keystore, though not mandatory.

like image 194
jeet Avatar answered Oct 25 '22 02:10

jeet


You can use same keystore for signing multiple applications.

There is no need to create new keystore file again and again.

You can follow this for reference.

like image 3
AppMobiGurmeet Avatar answered Oct 25 '22 02:10

AppMobiGurmeet


Sharing a keystore between multiple applications is a bad idea and isn't very secure.

  1. API Consoles that use a keystore for identification can get messy.
  2. If one app keystore is compromised, all apps are compromised
like image 1
jjNford Avatar answered Oct 25 '22 04:10

jjNford