Can I install the "app store" in an IOS simulator?

IosApp StoreSimulator

Ios Problem Overview


The IOS simulator in my computer doesn't have app store. I want to use the app store to test a program I wrote on my simulator.

Is it possible to install the app store in my simulator?

Ios Solutions


Solution 1 - Ios

This is NOT possible

The Simulator does not run ARM code, ONLY x86 code. Unless you have the raw source code from Apple, you won't see the App Store on the Simulator.

The app you write you will be able to test in the Simulator by running it directly from Xcode even if you don't have a developer account. To test your app on an actual device, you will need to be apart of the Apple Developer program.

Solution 2 - Ios

No, according to Apple here:

>Note: You cannot install apps from the App Store in simulation environments.

Solution 3 - Ios

You can install other builds but not Appstore build.

From Xcode 8.2,drag and drop the build to simulator for the installation.

https://stackoverflow.com/a/41671233/1522584

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionWilliamView Question on Stackoverflow
Solution 1 - IosWrightsCSView Answer on Stackoverflow
Solution 2 - IosKhawarView Answer on Stackoverflow
Solution 3 - IosAbhijithView Answer on Stackoverflow