Contents
Overview
Titanium SDK enables Studio to initiate a debug session on an iOS device. Debugging on an iOS device involves the following steps:
- User selects the Debug on iOS Device.
- Studio builds the application.
- Application is synced to the device, either automatically or manually.
- User launches the application on device.
- Application initiates debug session with Studio over the local Wi-Fi network.
This page will guide you through the setup, and the launch, of a debug session.
Requirements
To debug on an iOS device, you must:
- Be able to to install applications on your iOS device from Studio. (If you haven't installed an application on your device yet, review the steps in Deploying to iOS devices.)
- Connect the macOS machine and the device to the same wireless (Wi-Fi) network. The debugger protocol runs over the network (a cable does not serve as an alternative).
Each time you run the debugger, Studio builds the application and attempts to install it using iTunes. In order to install the application using iTunes, you must either:
- Connect your device using the USB cable (recommended).
- Configure your device to sync with iTunes over Wi-Fi. To sync over Wi-Fi, your device must be connected to a power source, and may require multicast and Universal Plug and Play (UPnP) to be enabled on the router. Wi-Fi sync is slower and less reliable than syncing using the USB cable.
For convenience, if you use iTunes for syncing applications to device, it is recommended that you configure iTunes to sync applications automatically.
As an alternative to the iTunes sync process, you may use Xcode or the iPhone Configuration Utility in order to install the application on the device once the Titanium build and deploy is done.
Network Setup
In order to debug on an iOS device, the device and computer running Studio must be attached to the same wireless (Wi-Fi) network, and the network must allow connections between two clients.
Some public Wi-Fi networks are configured so clients can only communicate with the internet, not with each other. These networks are not compatible with on-device debugging for iOS.
If you do not have a suitable Wi-Fi network available, you can create an
ad-hoc network on your computer and connect to it using your device. See
macOS: Create a computer-to-computer network on the Apple Support site for directions on creating an ad-hoc network.
Launching a Debug Session
Before debugging, you must have created a Titanium project with an iPhone/iPad deploy target. There are three basic steps:
- Initiate the debug session in Studio.
- Wait while application builds and installs.
- Launch the application from the device and start debugging
Initiate the Debug Session
- Make sure your project is selected in the Project Explorer view.
- In the global tool bar, select Debug from the Launch Mode drop-down list.
- Select the iOS device you want to launch your project on or iTunes Sync to install the application to iTunes from the Target drop-down list.
- Click the Launch button.
- Complete the wizard to initiate a debug session. Studio prompts you to pick the certificate, provisioning profile, and SDK version to use for the debug build.
iTunes Deployment
If you chose to deploy your application to iTune first, you need to perform a few extra steps to install it to your device. After Studio builds your project, the built application is deployed into iTunes. If you have already deployed this application to device, iTunes prompts you to replace the older application with the new version. iTunes syncs the new application to the connected device(s).
Launch the Application and Debug
After the application finishes installing:
- Run the application on the device.
- A dialog appears on the device indicating it's waiting for the debug session
to start on the indicated WiFi network. Both the host computer and
target iOS device must be on the same WiFi network in order to debug. If
they differ, you need to change either host computer's or target iOS device's
WiFi settings to match the other's WiFi network. You may need to
cancel the debug session and restart the debug process.
- The device connects to Studio, and a debug session begins (and is visible in Studio's Debug perspective).
Troubleshooting iOS On-Device Debugging Problems
iTunes Fails to Sync the Application to the Device After First Launch
- Check the Apps tab in your iTunes. Make sure it's set to sync automatically, and that the new app appears with a checkmark next to it. If it doesn't, check the app and hit Apply.
Debugger Fails to Connect
- Make sure both the iOS device and the computer are connected to the same Wi-Fi network.
- Initiate a new debug session from Studio. You cannot restart a debug session by restarting the application on the device.
Wi-Fi Sync Problems
You should be able to see the device in iTunes when it is not connected using the USB cable. If you can't, try the following:
- Check that the Wi-Fi network has multicast or broadcast addressing enabled. This is enabled by default on most home Wi-Fi routers, but may not be true on corporate or public Wi-Fi networks. Multicast or broadcast addressing is required for Wi-Fi sync – it is not required for debugging if you are using a USB cable for sync.
- Follow the steps described in iTunes 10.5 and later: Troubleshooting iTunes Wi-Fi Syncing on the Apple Support site.
Testing Network Connection
If you need to test whether your device and computer are on the same network, you can create a test web site in Studio to test the connection.
- Find the IP address of your phone. (See instructions here: http://www.iclarified.com/entry/index.php?enid=496.)
- Inside Studio, create a new web project:
- Click File > New > Project.
- Select Web Project and click Next.
- Select Default Template and click Next.
- Enter a project name and click Finish.
- Create a HTML file inside that web project:
- In the Project Explorer view, select the project folder and click File > New.
- Enter
test.html
for the filename. - Edit the new file and add some basic HTML.
- Open the Preferences dialog and navigate to Studio > Web Servers > Built-in.
- Pick an IP address that is in the same range as the phone's IP address.
- Restart Studio.
- In the Project Explorer view, click on the HTML file you created.
- Click Run > Run.
A browser opens, directed to the web page. - Open up a web browser on your iOS device.
- Navigate to the URL shown in the URL bar in the browser on your machine.
- If you can see the page on the iOS device, networking is set up correctly.
- If you cannot see the page, you have a networking problem.