Skip to content

ENUM

Entitlements

Contents

swift
public enum Entitlements: Codable, Equatable

Cases

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?