Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android, Multiple Apps, Multiple Customers, One Keystore [duplicate]

I have 15 android apps to build and host (and update in the future).

Each app has a unique package name.

5 apps will be hosted on one google play account.

the other 10 will be on 10 individual customer accounts.

I dont want a link between the apps, and want to be able to update them seperately in the future.

Question: Can I use 1 Keystore for all? Or will I need a unique keystore for each app? Will this effect the update process in the future? Or do I just need to keep packagename the same to make sure of a successful update?

like image 727
TommyGuns21 Avatar asked May 09 '12 10:05

TommyGuns21


1 Answers

In theory, you can use the same keystore to sign all the applications. In practice, however, it would be good to use individual keystores per developer accounts. The reason being, they belong to different customers and in future, if somebody else have to update the apps (not you), then you will have to either supply the keystore to the customer or update the application by signing with a different keystore. Both of these can be problematic.

like image 112
Rajesh Avatar answered Oct 13 '22 11:10

Rajesh