STRUCT
Profile.PlatformOptions
Contents
- Properties
archosdevicedescription
- Methods
init(arch:os:device:)options(arch:os:device:)
swift
public struct PlatformOptions: Codable, Hashable, CustomStringConvertibleProperties
arch
swift
public var arch: BinaryArchitectureThe target architecture for cache warmup, e.g. iOS:arm64, watchOS:arm6432 etc.
os
swift
public var os: Version?The version of the OS to be used when building the project during a caching warmup
device
swift
public var device: String?The device to be used when building the project during a caching warmup
description
swift
public var description: StringMethods
init(arch:os:device:)
swift
public init(
arch: BinaryArchitecture,
os: Version? = nil,
device: String? = nil
)options(arch:os:device:)
swift
public static func options(
arch: BinaryArchitecture,
os: Version? = nil,
device: String? = nil
) -> PlatformOptions