Using Mac Sierra's siri feature to test xcode app on simulator - ios10

I have upgraded Mac system to sierra and xcode to 8.0.My question is,Is it possible to use siri of Mac system to test xcode app on simulator?

You don't need to use Mac Sierra's SIRI feature because IOS simulator have its own SIRI activated ...
You just need to update your XCode Version :8.3.1 and above support SIRI in simulator.
Enable SIRI from Settings in Simulator
Hardware--->SIRI-->DONE-Start testing

Related

XCode does not show my iPhone as a destination

When try to run my app on my iPhone with iOS 16, XCode does not show the phone as an option even though it is connected by USB. This used to work.
I have tried rebooting XCode, my phone and my MacBook but nothing changes.
As of iOS 16, you need to manually and explicitly enable Developer mode in Settings on your iPhone before you can use it for debugging with XCode.
Go to Settings -> Privacy and Security -> Developer Mode
For iOS 16 devices you must also have the following on your Mac:
XCode 14+
MacOS Monterey 12.6+

Is it possible to install my app on a real device iPhone with iOS 12.5.5 with Xcode 13.3 running on a M1 Mac?

Unfortunately I'm not able to download an iOS 12.x simulator on my new Mac with M1 chip. But I need a debug device with iOS<13.0. So does it make sense to buy an old iPhone (e.g. 6s) with iOS 12.5.5?

Can no longer use iPhone with XCode for testing, iPhone OS is a newer version

I have XCode 4.6.2, and on my iPhone I now have iOS 6.1.3. When I plug my iPhone into my Mac, XCode doesn't let me select it as an option for testing, as my project settings are to work on 6.1, and the dropdown doesn't have any newer options. I went into preferences, and the only available downloads are past versions of the simulator.
How do I get XCode to allow me to test using 6.1.3?
Open Organizer from Xcode,in that devices, find your device and click the option to use for development

Testing on jailbroken brand-new iOS device - using Xcode?

OK. So, here's some details on my situation :
I've got a brand-new iPhone 4.
The iOS version has been updated to 5.1.1 (9B206).
The phone has been jailbroken using redsn0w.
I'm running Lion (10.7.4) and Xcode 4.3.
Now, my issue :
I'm creating a sample test app, which runs fine under the simulator.
Followed everything here, but without any result.
Also tried enabling my device via Organizer ("Use as development device").
When I click on "Use as development device", it keeps saying...
The version of iOS on “Dr.Kameleon’s iPhone” does not match any of the
versions of iOS supported for development with this installation of
the iOS SDK. Please restore the device to a version of the OS listed
below, or update to the latest version of the iOS SDK; which is
available here.
OS Installed on Dr.Kameleon’s iPhone
5.1.1 (9B206)
Xcode Supported iOS Versions Latest
5.0 (9A334)
4.3
4.2
While, when I try running on my "iOS device" (that's how it appears), it claims there's no device with a proper iOS version.
No provisioned iOS devices are available with a compatible iOS
version. Connect an iOS device with a recent enough version of iOS to
run your application or choose an iOS simulator as the destination.
Any ideas? What's going wrong?
Look, everyone who says you can't build directly on a jailbroken device is wrong. You can, and it's quite easy to do. If you don't have a provisioned device (and it looks like you don't), using this guide will work. I've tested it myself on Lion running Xcode 4.3 (it even works on later versions, but those are under NDA).
The real issue seems to be that, for whatever reason, you don't have the iOS 5.1 SDK - you're using the iOS 5.0 SDK. You can confirm this by looking in /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport. If you don't see any mention of 5.1, you don't have it installed. Try downloading and installing Xcode again (I believe it's 4.3.2 now), which should have the iOS 5.1 SDK bundled with it.
This error is not due to the jailbroken iPhone, its basically due to your lower version of Xcode which doesn't support the latest iOS, try upgrading your Xcode version to latest.hope it helps

Does an app that made with ios sdk 4 install on device with os 4.2?

Does an app that made with ios sdk 4 install on device with os 4.2 ?
I made an app with ios sdk 4.0.1 but now i want to install it from xcode on ipod touch with os 4.2 but says No provisioned iPhone OS device is connected.
Yes. You can run Applications for previous versions of iOS on a device with iOS 4.2.
The other way around might not be true: you may not be able to run applications compiled specifically for iOS 4.2 on devices with previous versions of iOS.
Keep in mind that with iOS 4.2 SDK you CAN create applications for devices running lower version of iOS also. It depends on how you configure your project on info.plist and the APIs you use in your application.
Yes. There might be few cases of incompatibility, but they are very rare.
Edit: And in most cases, apps build against 4.2 will run on 4.0 just fine, if they use the new stuff wisely.
In almost all circumstances your app should run. It's very unlikely for it to produce any errors.