2

I already have an application it's working and running on google play store using Android java , now I update the same application with react-native the whole app is changed , what options do I have to use the same account for my old app and can we update the application with the new one ? and what ill happen after the update especially if there is internal data saved?

Marcel Adel
  • 181
  • 2
  • 12

1 Answers1

1

As long as the application:

  • is built to an APK or App Bundle
  • has the same package name / application id
  • has the same signing certificate

then Google Play doesn't care what language your app was built with, you can just replace one APK with another.

As with any update, internal data is stored on app specific local storage. You will have to write code in the new React app to read saved code from the Java app. How hard this is depends on how you wrote the internal saved data.

Nick Fortescue
  • 13,530
  • 1
  • 31
  • 37