Skip to content

Commit

Permalink
Update minimum version for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
hmlongco committed Sep 30, 2023
1 parent 63fe1f3 commit 8d20074
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Factory.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.source_files = "Sources/**/*.swift"
s.swift_version = '5.7'

s.ios.deployment_target = "11.0"
s.ios.deployment_target = "12.0"
s.ios.framework = 'UIKit'

s.tvos.deployment_target = "13.0"
Expand Down
4 changes: 3 additions & 1 deletion Sources/Factory/Factory/Globals.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,16 @@ import Foundation
/// Master graph resolution depth counter
internal var globalGraphResolutionDepth = 0

/// Internal key used for Resolver mode
internal var globalResolverKey: StaticString = "*"

#if DEBUG
/// Internal variables used for debugging
internal var globalDependencyChain: [String] = []
internal var globalDependencyChainMessages: [String] = []
internal var globalTraceFlag: Bool = false
internal var globalTraceResolutions: [String] = []
internal var globalLogger: (String) -> Void = { print($0) }
internal var globalResolverKey: StaticString = "*"
internal var globalDebugInformationMap: [FactoryKey:FactoryDebugInformation] = [:]

/// Triggers fatalError after resetting enough stuff so unit tests can continue
Expand Down

0 comments on commit 8d20074

Please sign in to comment.