Home > Back-end >  Can I use .jks file instead of .keystore file in react native?
Can I use .jks file instead of .keystore file in react native?

Time:10-07

I am trying to get a .aab file after creating a simple app in react native. Now in order to get that I need to make a .keystore file. Now as this app will replace a previous app in play store(which was created using Dart) I need to use the previous app's keystore file which is in .jks format. Now can I use this .jks file or do I need to convert this .jks file to .keystore file? Is there any I can convert this .jks file to .keystore file?

CodePudding user response:

You don't need to convert the .jks file to .keystore because JKS meaning Java Keystore already, you can use whatever you want.

You can check this question to learn the differences between the two: Difference between .keystore file and .jks file

  • Related