3

I have 5 apps signed with one keystore file. Now I want to create a separate keystore for one app and keep the package id unchanged.

How can I do it?

vkj
  • 537
  • 4
  • 11
  • different alias for each app – vkj Sep 20 '18 at 08:48
  • I'm voting to close this question as off-topic because it is not about programming. But, you just need to use your preferred tool (openssl, keytool, keystoreexplorer) to export each key and import it into a new keystore per application. – pedrofb Sep 20 '18 at 14:49

1 Answers1

0

If you are using a keystore with single alias or key, then it means all apps are signed with same key. In this case, it is not possible to change the key to sign the app for submitting in Google's Play console. You must always use the same key to sign the apps for submitting updates.

Nabin Bhandari
  • 15,949
  • 6
  • 45
  • 59
  • What if I all 5 alias are different? Is there any way to create a separate keystore file of one alias? – vkj Sep 20 '18 at 08:46
  • I don't think that is possible either, but I'm not sure. Why do you want to separate it into multiple files? – Nabin Bhandari Sep 20 '18 at 08:49
  • I want to transfer the ownership to another company – vkj Sep 20 '18 at 11:09
  • If the passwords for each alias are different, you can provide password of the keystore and the password of that alias only. But if the password of all alias are same, you will need to share key of all apps. – Nabin Bhandari Sep 20 '18 at 11:12