Reputation: 548
I have an app and I want to check the content of the main bundle of the application. Basically I go to the following filepath: User/Library/Application Support/iPhone Simulator and there are many folders inside it: 6.0, 6.1, 7.0, 7.0-64, 7.1-64 etc. containing bundles for corresponding applications. But there's no any folder with name 8.x and nothing happens if I launch the app for the simulator with this iOS version.
So what's the reason of the problem? Where can I find what I want? I use XCode 6.1, iPhone Simulator 4s, iOS SDK 8.1.
Thanks in advance.
Upvotes: 1
Views: 1197
Reputation: 8491
They are now in...
Users/YOU/Library/Developer/CoreSimulator/Devices
In that folder are a list of what appear to be GUIDS, in each of those folders is a device.plist, for example...
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>UDID</key>
<string>2E7D8A02-1224-488B-B596-C1F7CA31F3C0</string>
<key>deviceType</key>
<string>com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus</string>
<key>name</key>
<string>iPhone 6 Plus</string>
<key>runtime</key>
<string>com.apple.CoreSimulator.SimRuntime.iOS-8-0</string>
<key>state</key>
<integer>1</integer>
</dict>
</plist>
One of the elements is called name
and you can see in this example iPhone 6 Plus
, this will help you identify the right folder for the right device
Upvotes: 2