ENUM
Entitlements
Contents
- Cases
file(path:)generatedFile(path:data:)dictionary(_:)
- Properties
path
swift
public enum Entitlements: Codable, EquatableCases
file(path:)
swift
case file(path: FilePath)The path to an existing .entitlements file.
generatedFile(path:data:)
swift
case generatedFile(path: FilePath, data: Data)dictionary(_:)
swift
case dictionary([String: Plist.Value])A dictionary with the entitlements content. Geko generates the .entitlements file at the generation time.
Properties
path
swift
public var path: FilePath?