How to get back app version in App Store?

Asked

Viewed 4,619 times

1

I uploaded a version of an App recently with several modifications to App Store (IOS), unfortunately a bug went on the air, so the best solution at the moment is to return to the latest 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 to production in the App Store store? If yes, how do I do this?

I thought about creating a new version and uploading the old compilation, but really so it would have the approval delay of the store and it would be a kind of gambiarra.

2 answers

2


  • Thank you very much Antonius! Unfortunately it was what I suspected kk. But this form you gave me I believe will help me a lot :D

1

This is not possible, versions of applications are incremental, ie if you have an application 0.0.10 the next update should contain a version at least with the 0.0.11.

What you should do is send another version with unstable code. Remembering that you have to wait for the revision period of apple!

You can follow the following steps:

Supposing you are using git, I would recommend you create a branch through his commit who wishes to return.

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

git log

In Visual Studio Code are the yellow parts:

inserir a descrição da imagem aqui

Creating a branch through his commit:

git checkout -b branchInstavel 1329102864012a1502f3cbaa5ce9936c78ca2863

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

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

Browser other questions tagged

You are not signed in. Login or sign up in order to post.