skip to Main Content

Thanks for giving this a read. I have an existing React Native app but after years of going back and forth with the company who helped build it, we decided that the mobile site still offers all the best features for a good app. So I decided I will make a web app which is fairly simple to do with loads of companies out there offering the online service. What I don’t want is for my users to download a completely different app. I know there is a way to push out a new app build on a different codebase if you consider things like certificates and for Android somehow connect the same keystore credentials. Does anyone have helpful documentation for this? Or a web app company that will help with this? I have all the certificates, firebase files, etc etc

Thanks again!

I tried to do it myself and to explain it to support. I think the language differences is what make it hard.

2

Answers


  1. Chosen as BEST ANSWER

    Thanks everyone. After some extensive research I settle upon a site called App My Site. They seem to be able to do the migration successfully. I'm sad that I need to result in basically downgrading my app in order to get it to work properly. But the Buddyboss app built on react native is not an adequate solution for any business hoping to build a successfully community app. Their roadmap is almost half a decade old and not being honored. Thanks again!


  2. It is possible. You can replace the codebase with whatever technology that works for Android / iOS.

    As I wrote here, an app has to meet the following three requirements to be an elligible update for an exisiting app:

    1. The application ID must be identical.
    2. The version number must be greater than the version number of the previously released app.
    3. The app must be signed with the same signing key as before.

    Besides that, it doesn’t matter if you create your app with Kotlin/Java (Android), Objective-C / Swift (iOS), Flutter, Xamarin, React Native, Cordova or any other technology.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search