Skip to content
/ .. / .. /
iOS Phone Configuration










iOS Phone Configuration

The following configuration enables intaQt to acquire iOS phones for use with Apptests. Additionally, Enabling and Disabling Airplane Mode is supported for iPhone XR devices.

iOS phone testing only works on Macintosh computers that have Xcode installed. Installation instructions are available in Prerequsite Software Installation.

Syntax

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
Ios {
  isActive        = <Boolean>
  allowSimulators = <Boolean>
  devices {
    <serialNumber String> {
      audioServiceURL = <String>
    },
    ...
  }
}

Parameters

  • isActive -

    • true to activate the feature
    • false (default) to deactivate it
  • allowSimulators -

    • true to enable acquiring simulator/virtual phones
    • false (default) to deactivate it
  • serialNumber - The serial number associated with the device

  • audioServiceURL - The URL of the audio recording service running on the Raspberry Pi

Example

1
2
3
4
5
6
7
8
9
Ios {
  isActive = true
  allowSimulators = false
  devices {
    "1234567890000" =   {
      "audioServiceURL" : "http://10.13.13.10:10001"
    }
  }
}