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?

5
  • So you want to know if once updated, the old version of the App can still be used on Play Store? Or are you asking how to update an App? Commented Jun 14, 2018 at 9:48
  • I'm asking what will happen to the old data saved once the old users do the update ? Commented Jun 14, 2018 at 9:55
  • Was it using RN before? Commented Jun 14, 2018 at 10:05
  • No it was regular android app Commented Jun 14, 2018 at 10:07
  • Then I don't think it's possible to migrate unless it's stored in a Cloud service or SQLite. stackoverflow.com/questions/44376002/… Commented Jun 14, 2018 at 10:27

1 Answer 1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.