How to get back version of the app in the App Store?

I uploaded a version of an app recently with several modifications in the App Store (IOS), unfortunately a bug has gone up, so the best solution at the moment is to go back to the last stable version, which was in production before that.

So I was left with the following doubt.

Is it possible to return the version of an app in production to the App Store? If so how do I do that?

I thought I'd create a new version and go up to old compilation but even so it would have the approval delay of the store and it would be a kind of workaround.

Author: RXSD, 2019-02-11

2 answers

Cannot roll back the application version. you should upload the previous version as new version again to fix this. One thing you can do is: "expediting an application review", check the following link that explains well.

Https://developer.apple.com/appstore/contact/?topic=expedite

 2
Author: Antonius Lourenço Kasbergen, 2019-02-11 12:25:34

This is not possible, application versions are incremental, that is, if you have an application 0.0.10 the next update should contain a minimum version with the 0.0.11.

What you should do is submit another version with the unstable code. Remembering that you have to wait for the Apple review period!

You can follow these steps:

Assuming you are using git, I would recommend you create a branch through your commit you want return.

To know which hash (sha1) of your commit, in your terminal type:

git log

In Visual Studio Code are the parts in yellow:

insert the description of the image here

Creating a branch through your commit:

git checkout -b branchInstavel 1329102864012a1502f3cbaa5ce9936c78ca2863

After you can build your application through this branch and submit again for review.

When you can fix bug do a merge to the branch master.

 1
Author: Marconi, 2019-02-11 13:20:20