Removing an IOS app from the app store- from an existing user's perspective [closed] - ios

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 8 years ago.
Improve this question
We are "Removing From Sale" an iOS App currently available on the AppStore. I am curious how this works from the perspective of people who have downloaded the app. I assume the previously downloaded App will keep working but is there a way (e.g., via an Upgrade) that we can let people know that App is no longer support and give them the option to remove it? Are there any best practices when removing an App so you don't piss off people who already use it (given that at some point it will break).

Your best bet is to release one more update to the app, notifying the user of the pending removal from sale. You could do this using a UIAlertView on launch, or in any number of ways. You could also update the App Store description to call users' attention to the pending deletion. If you simply remove the app from sale, existing users will keep their copy but will not be notified that it has been removed from sale.

Related

Purchase an app for the name [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 5 years ago.
Improve this question
The company I work for is busy in developing an enterprise app for both iOS and Android platform. The problem we've run into is that on the iOS app store, the name we need is already taken. So before we start experimenting with other options for the app name, we want to approach the developer and make him an offer for the name/or app, seeing as it seems like an inactive app with very low downloads.
Is this something worth looking at? Is this even a plausible option to explore?
Yes, there is an option to solve your problem.
You can buy that app by contacting the developer, and then you can change the entire setup.
The developer can transfer the app from his/her account to your company's/your account.

Is it alright to enforce users to update an ios application on their devices? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 7 years ago.
Improve this question
I was just wondering what are the guidlines and policies about updating an app on app store? Are we allowed to enforce the users to upgrade their applications programatically?
I'd like to give you some key-points, that might be useful in yours app-update strategies.
Non forced update: (1.X.X) You can use this strategy when you updated your app slightly and updating to it will provide user more delight product. Then you might use simple UIAlertView with notification about new version update and it's features and OK|Cancel buttons, that lead to appStore. This notification can be shown, for example, every time user launches the app. Every applicationDidBecomeActive call can ask your server for actual information about new version
Forced update (2.x.x) you might find it useful, when you made breaking changes on your server-side or you decided to stop supporting some old versions of the app. Then after server-call and retrieving information about app deprecation a modal viewcontroller can be shown with only button, that leads to AppStore and text, that informs about new version available.
Both of these scenarios are used in my apps, and I've never had any troubles with Apple's policies.

App Update doesn't show up under 'App Store Updates' [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 5 years ago.
Improve this question
Apple just approved my update for my app but it doesn't show under the updates page of the app store. You have to manually go to the app page on the store and there is a cloud icon that appears that will download the update.
I named the first version of my app 6.1 for some reason, don't know why. And my update is version 2.0. Is this the reason? And if so, can i change the version number of the first to 1.0.
Apple never publishes the updates / new apps right after ready for sale. You have to be a bit patient and wait for about a day or something.
Also, it does not matter how you name your app versions. It can be whatever number you want it to be. Apple just recommends using numbers that make sense but they won't do anything about it.
Hope that helps :)

Add in-app purchase items to next version while current version is under review [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have submitted an App to the AppStore and it's awaiting review. In the meantime I'm working on adding in-app purchases for the next version of the App. To do that I need to add them in iTunes Connect for testing purposes.
I'm unsure if adding the IAP is going to somehow affect the current version (which is currently awaiting review)?
Anyone knows how to handle this situation? Must be quite common?
thank you.
Your app starts with a list of potential IAP items that are passed to the IAP sdk to get the info. As the new items shouldn't be in the list for the old version of your application, I don't see how they would impact it. If you retrieve the list from a server, you need to make sure you return the correct list for each version of the app in any case. If you don't have that logic in place, then things could get confused but it needs to be fixed anyway (imagine users who don't upgrade).
no it wont affect the app review

How much native functionality is required for Apple app store approval? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
We've made an application that embeds some web content, which has been approved before. Recently Apple has begun rejecting these app's stating that they're plain content-aggregators and that they lack native functionality, even though they have native functionality such as push notifications and reachability checks.
We now considered splitting the web views up and make a native UITabBar.
The question now is—does any of you have any experience whether or not this sort of app would be approved?
I think it will also depend on the reviewer. I once got an application accepted, and the update wasn't accepted because I did not gave an access account (although when I first submitted, the reviewer, did created one to test). Try adding the UITabBar so you can have a more native look, but perhaps, they do have a check a list, at least as a guide line to see if an application does have a native look.
they're plain content-aggregators and that they lack native
functionality
By this apple means that if you can easily show your data using a mobile website then don't create a native app for this.
2.12
Apps that are not very useful, are simply web sites bundled as apps, or do not provide any lasting entertainment value may be rejected
see here - https://developer.apple.com/appstore/resources/approval/guidelines.html

Resources