Quick an Update App question.

So say you have your first iOS app approved and sitting in the app store version 1.0. What is the process to update the app, do you have to go through the approval process again? Or can you just upload v1.1? Do you have to do something new in iTunes connect make a new version or something?

Sorry, I know this is not really Corona related, but I am using some of the code from the exchange to “request an app rating” and it seems you have to use your URL to your app in iTunes store. Problem is I don’t have a URL yet so I thought I could just do a quick update to the app once it is in the store. Or is there another way to tell what that URL would be?

Thanks!!!

[import]uid: 8139 topic_id: 16013 reply_id: 316013[/import]

You go to the app in question under itunes connect and click add version. It does go though a review process but it’s usually quicker than the initial app submission review time. [import]uid: 84637 topic_id: 16013 reply_id: 59410[/import]

Thanks Danny! Never having done this before, I appreciate knowing how that will work, appreciate it. [import]uid: 8139 topic_id: 16013 reply_id: 59413[/import]

You can use below method to do the rating. Once you created your app in the itunes connect, the appId is already available and this should work after your app is approved.

local url = "itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa" url = url .. "/wa/viewContentsUserReviews?" url = url .. "type=Purple+Software&id=" url = url .. appId system.openURL(url) [import]uid: 59398 topic_id: 16013 reply_id: 59422[/import]

Wow cool! Thanks! [import]uid: 8139 topic_id: 16013 reply_id: 59565[/import]