-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feature(xcode12.5): update for a new xcode version and swift 5 #156
feature(xcode12.5): update for a new xcode version and swift 5 #156
Conversation
6db8a6d
to
af9d48f
Compare
@@ -14,12 +14,12 @@ private var uivcRegistrationNameKey: String = "UIViewController.swinjectRegistra | |||
private var uivcWasInjectedKey: String = "UIViewController.wasInjected" | |||
|
|||
extension UIViewController: RegistrationNameAssociatable, InjectionVerifiable { | |||
internal var swinjectRegistrationName: String? { | |||
public var swinjectRegistrationName: String? { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not sure we really need to make the properties public. We might revert it to internal later.
get { return getAssociatedString(key: &uivcRegistrationNameKey) } | ||
set { setAssociatedString(newValue, key: &uivcRegistrationNameKey) } | ||
} | ||
|
||
internal var wasInjected: Bool { | ||
public var wasInjected: Bool { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's not sure we really need to make the properties public. We might revert it to internal later.
Thank you for making the script😃 |
CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||
CODE_SIGNING_REQUIRED = NO; | ||
CURRENT_PROJECT_VERSION = 1; | ||
GCC_NO_COMMON_BLOCKS = YES; | ||
IPHONEOS_DEPLOYMENT_TARGET = 8.0; | ||
IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment target was increased. We might revert it later.
MACOSX_DEPLOYMENT_TARGET = 10.10; | ||
MTL_ENABLE_DEBUG_INFO = NO; | ||
SWIFT_COMPILATION_MODE = wholemodule; | ||
SWIFT_VERSION = 4.2; | ||
TARGETED_DEVICE_FAMILY = "1,2"; | ||
TVOS_DEPLOYMENT_TARGET = 9.0; | ||
TVOS_DEPLOYMENT_TARGET = 12.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment target was increased. We might revert it later.
@@ -1138,7 +1140,7 @@ | |||
"$(PROJECT_DIR)/Carthage/Build/iOS", | |||
); | |||
INFOPLIST_FILE = Tests/Info.plist; | |||
IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |||
IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment target was increased. We might revert it later.
@@ -1155,7 +1157,7 @@ | |||
"$(PROJECT_DIR)/Carthage/Build/iOS", | |||
); | |||
INFOPLIST_FILE = Tests/Info.plist; | |||
IPHONEOS_DEPLOYMENT_TARGET = 9.0; | |||
IPHONEOS_DEPLOYMENT_TARGET = 12.0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deployment target was increased. We might revert it later.
No description provided.