Home > database >  Is it possible to transfer ios application from react native to swift native app?
Is it possible to transfer ios application from react native to swift native app?

Time:01-30

I have an iOS app published in store, made with React-Native. (it is created by other developer, i'm not the original developer in this project.) Now i'm refactoring my application into SwiftUI. Is it possible to change entire project in same package? I want to keep app store page of my application.

I read how to publish applications. I read how to manage app package uri.

CodePudding user response:

Yes, possible. Keep your bundle identifier same and Increase your app version.

CodePudding user response:

It is completely possible. You need to re-submit the updated app for review and approval by Apple.

Be sure that the bundle identifier is the same, otherwise it will be treated as a new app and will not replace the old one on the App Store page.

There are already many examples of companies that have completely changed the codebase of their apps.

  • Related