Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "BoltsFramework/Bolts-ObjC" ~> 1.9.1
github "facebook/facebook-objc-sdk" ~> 6.0
github "facebook/facebook-ios-sdk"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "BoltsFramework/Bolts-ObjC" "1.9.1"
github "facebook/facebook-objc-sdk" "v6.5.0"
github "facebook/facebook-ios-sdk" "v8.2.0"
2 changes: 1 addition & 1 deletion Carthage/Checkouts/OCMock
Submodule OCMock updated 84 files
+1 −1 .travis.yml
+60 −25 Makefile
+29 −25 OCMock.podspec
+20 −0 Source/Carthage.xcconfig
+27 −0 Source/Changes.txt
+92 −57 Source/OCMock.xcodeproj/project.pbxproj
+1 −1 Source/OCMock.xcodeproj/xcshareddata/xcschemes/OCMock iOS.xcscheme
+1 −1 Source/OCMock.xcodeproj/xcshareddata/xcschemes/OCMock tvOS.xcscheme
+1 −1 Source/OCMock.xcodeproj/xcshareddata/xcschemes/OCMock watchOS.xcscheme
+10 −11 Source/OCMock.xcodeproj/xcshareddata/xcschemes/OCMock.xcscheme
+1 −1 Source/OCMock.xcodeproj/xcshareddata/xcschemes/OCMockLib.xcscheme
+1 −5 Source/OCMock/NSInvocation+OCMAdditions.h
+41 −64 Source/OCMock/NSInvocation+OCMAdditions.m
+1 −1 Source/OCMock/NSMethodSignature+OCMAdditions.m
+5 −0 Source/OCMock/NSNotificationCenter+OCMAdditions.m
+2 −1 Source/OCMock/NSObject+OCMAdditions.m
+1 −0 Source/OCMock/NSValue+OCMAdditions.m
+3 −1 Source/OCMock/OCClassMockObject.h
+20 −5 Source/OCMock/OCClassMockObject.m
+4 −3 Source/OCMock/OCMArg.m
+0 −1 Source/OCMock/OCMBlockCaller.h
+6 −4 Source/OCMock/OCMBoxedReturnValueProvider.m
+0 −1 Source/OCMock/OCMConstraint.h
+3 −2 Source/OCMock/OCMConstraint.m
+1 −1 Source/OCMock/OCMExpectationRecorder.h
+2 −0 Source/OCMock/OCMExpectationRecorder.m
+1 −0 Source/OCMock/OCMFunctions.h
+97 −55 Source/OCMock/OCMFunctions.m
+1 −0 Source/OCMock/OCMFunctionsPrivate.h
+4 −4 Source/OCMock/OCMInvocationMatcher.m
+17 −2 Source/OCMock/OCMInvocationStub.m
+1 −2 Source/OCMock/OCMLocation.h
+1 −0 Source/OCMock/OCMLocation.m
+1 −1 Source/OCMock/OCMMacroState.m
+2 −14 Source/OCMock/OCMNonRetainingObjectReturnValueProvider.m
+2 −4 Source/OCMock/OCMObserverRecorder.m
+29 −13 Source/OCMock/OCMRealObjectForwarder.m
+2 −2 Source/OCMock/OCMRecorder.m
+24 −0 Source/OCMock/OCMStubRecorder.h
+34 −10 Source/OCMock/OCMStubRecorder.m
+2 −2 Source/OCMock/OCMVerifier.h
+1 −1 Source/OCMock/OCMVerifier.m
+1 −136 Source/OCMock/OCMock.h
+156 −0 Source/OCMock/OCMockMacros.h
+2 −1 Source/OCMock/OCMockObject.h
+50 −40 Source/OCMock/OCMockObject.m
+1 −0 Source/OCMock/OCObserverMockObject.h
+5 −4 Source/OCMock/OCObserverMockObject.m
+2 −1 Source/OCMock/OCPartialMockObject.h
+25 −16 Source/OCMock/OCPartialMockObject.m
+1 −1 Source/OCMock/OCProtocolMockObject.h
+1 −1 Source/OCMock/OCProtocolMockObject.m
+0 −2 Source/OCMock/en.lproj/InfoPlist.strings
+8 −0 Source/OCMockCI.xcconfig
+15 −0 Source/OCMockDist.xcconfig
+0 −2 Source/OCMockLibTests/en.lproj/InfoPlist.strings
+24 −0 Source/OCMockTests/NSInvocationOCMAdditionsTests.m
+1 −0 Source/OCMockTests/NSMethodSignatureOCMAdditionsTests.m
+1 −0 Source/OCMockTests/OCMBoxedReturnValueProviderTests.m
+1 −1 Source/OCMockTests/OCMCPlusPlus11Tests.mm
+1 −1 Source/OCMockTests/OCMCPlusPlus98Tests.mm
+1 −1 Source/OCMockTests/OCMConstraintTests.m
+96 −0 Source/OCMockTests/OCMFunctionsTests.m
+1 −2 Source/OCMockTests/OCMInvocationMatcherTests.m
+2 −1 Source/OCMockTests/OCMNoEscapeBlockTests.m
+19 −2 Source/OCMockTests/OCMQuantifierTests.m
+2 −3 Source/OCMockTests/OCMStubRecorderTests.m
+1 −1 Source/OCMockTests/OCMockObjectClassMethodMockingTests.m
+2 −1 Source/OCMockTests/OCMockObjectDynamicPropertyMockingTests.m
+2 −1 Source/OCMockTests/OCMockObjectForwardingTargetTests.m
+1 −1 Source/OCMockTests/OCMockObjectHamcrestTests.m
+1 −1 Source/OCMockTests/OCMockObjectInternalTests.m
+57 −22 Source/OCMockTests/OCMockObjectMacroTests.m
+132 −56 Source/OCMockTests/OCMockObjectPartialMocksTests.m
+1 −1 Source/OCMockTests/OCMockObjectProtocolMocksTests.m
+284 −1 Source/OCMockTests/OCMockObjectRuntimeTests.m
+65 −7 Source/OCMockTests/OCMockObjectTests.m
+2 −2 Source/OCMockTests/OCMockObjectVerifyAfterRunTests.m
+6 −2 Source/OCMockTests/OCObserverMockObjectTests.m
+5 −3 Source/OCMockTests/TestClassWithCustomReferenceCounting.m
+0 −2 Source/OCMockTests/en.lproj/InfoPlist.strings
+0 −230 Tools/build.rb
+55 −0 Tools/buildcheck.rb
+44 −0 Tools/makedmg.rb
12 changes: 6 additions & 6 deletions Parse.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/parse-community/Parse-SDK-iOS-OSX.git', :tag => s.version.to_s }

s.platform = :ios, :osx, :tvos, :watchos
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '2.0'
Expand Down Expand Up @@ -85,7 +85,7 @@ Pod::Spec.new do |s|

s.subspec 'FacebookUtils' do |s|
s.platform = :ios
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.public_header_files = 'ParseFacebookUtils/ParseFacebookUtils/*.h'
s.source_files = 'ParseFacebookUtils/ParseFacebookUtils/**/*.{h,m}'
s.exclude_files = 'ParseFacebookUtils/ParseFacebookUtils/ParseFacebookUtilsV4.h',
Expand All @@ -104,7 +104,7 @@ Pod::Spec.new do |s|

s.dependency 'Parse/Core'
s.dependency 'Bolts/Tasks', '~> 1.9.1'
s.dependency 'FBSDKLoginKit', '~> 6.x'
s.dependency 'FBSDKLoginKit', '~> 8.x'
end

s.subspec 'FacebookUtils-tvOS' do |s|
Expand All @@ -126,8 +126,8 @@ Pod::Spec.new do |s|

s.dependency 'Parse/Core'
s.dependency 'Bolts/Tasks', '~> 1.9.1'
s.dependency 'FBSDKTVOSKit', '~> 6.x'
s.dependency 'FBSDKShareKit', '~> 6.x'
s.dependency 'FBSDKTVOSKit', '~> 8.x'
s.dependency 'FBSDKShareKit', '~> 8.x'
end

s.subspec 'TwitterUtils' do |s|
Expand All @@ -153,7 +153,7 @@ Pod::Spec.new do |s|
s.subspec 'UI' do |s|
s.platform = :ios
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.ios.deployment_target = '9.0'
s.source_files = 'ParseUI/**/*.{h,m}'
s.exclude_files = 'ParseUI/ParseUIDemo/**/*', 'ParseUI/Other/ParseUI.h', 'ParseUI/SignInWithAppleTests/'
s.public_header_files = 'ParseUI/Classes/LogInViewController/*.h',
Expand Down
2 changes: 1 addition & 1 deletion Parse/Configurations/Parse-iOS-Dynamic.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
PRODUCT_NAME = Parse
PRODUCT_BUNDLE_IDENTIFIER = com.parse.ios

IPHONEOS_DEPLOYMENT_TARGET = 8.0
IPHONEOS_DEPLOYMENT_TARGET = 9.0

INFOPLIST_FILE = $(PROJECT_DIR)/Parse/Resources/Parse-iOS.Info.plist

Expand Down
2 changes: 1 addition & 1 deletion Parse/Configurations/ParseUnitTests-iOS.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ PRODUCT_BUNDLE_IDENTIFIER = com.parse.unit.ios

SWIFT_VERSION = 5.0

IPHONEOS_DEPLOYMENT_TARGET = 8.0
IPHONEOS_DEPLOYMENT_TARGET = 9.0

INFOPLIST_FILE = $(SRCROOT)/Tests/Resources/ParseUnitTests-iOS-Info.plist

Expand Down
53 changes: 35 additions & 18 deletions Parse/Parse.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
403093771C81F0B200CF09F8 /* PFQueryConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4030936A1C81F0B200CF09F8 /* PFQueryConstants.m */; };
403093781C81F0B200CF09F8 /* PFQueryConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 4030936A1C81F0B200CF09F8 /* PFQueryConstants.m */; };
4A13525620282B4D000F5FD5 /* Parse.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97010FAC1630B18F00AB761E /* Parse.framework */; };
4A13525F20283603000F5FD5 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A13518820281768000F5FD5 /* Bolts.framework */; };
4AAEAA40200BE14B00AA7479 /* third_party_licenses.txt in Resources */ = {isa = PBXBuildFile; fileRef = 8139B12C1A7BF559002BEF84 /* third_party_licenses.txt */; };
4ABF398C1F54592100BBA75A /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4ABF398B1F54592100BBA75A /* Main.storyboard */; };
4AE33A0F1F5451AD0088DCA0 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AE33A0E1F5451AD0088DCA0 /* AppDelegate.m */; };
Expand Down Expand Up @@ -1151,7 +1150,6 @@
816A648B1C29E5A00029B197 /* PFUser+Synchronous.h in Headers */ = {isa = PBXBuildFile; fileRef = 816A64871C29E5A00029B197 /* PFUser+Synchronous.h */; settings = {ATTRIBUTES = (Public, ); }; };
816AC9BA1A3F48250031D94C /* PFApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = 816AC9B81A3F48250031D94C /* PFApplication.h */; settings = {ATTRIBUTES = (Private, ); }; };
816AC9BB1A3F48250031D94C /* PFApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = 816AC9B91A3F48250031D94C /* PFApplication.m */; };
816F44741A8E8933009CDB32 /* Parse.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 81C3821C19CCA89E0066284A /* Parse.framework */; platformFilter = ios; };
816F44761A8E8933009CDB32 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 498C29FE1551DC450034BB80 /* StoreKit.framework */; platformFilter = ios; };
816F44771A8E8933009CDB32 /* libsqlite3.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 6393F38B15D3018400C4F78D /* libsqlite3.dylib */; platformFilter = ios; };
816F44781A8E8933009CDB32 /* Accounts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 63CA84EA1612660F002E09F8 /* Accounts.framework */; platformFilter = ios; };
Expand Down Expand Up @@ -2509,7 +2507,6 @@
81F0E89D19E6F83E00812A88 /* PFSubclassing.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E81E8316EEF93E001D034F /* PFSubclassing.h */; settings = {ATTRIBUTES = (Public, ); }; };
91115EF91A097AF30092D1C9 /* PFEventuallyPin.h in Headers */ = {isa = PBXBuildFile; fileRef = 91115EF71A097AF30092D1C9 /* PFEventuallyPin.h */; settings = {ATTRIBUTES = (Private, ); }; };
91115EFA1A097AF30092D1C9 /* PFEventuallyPin.m in Sources */ = {isa = PBXBuildFile; fileRef = 91115EF81A097AF30092D1C9 /* PFEventuallyPin.m */; };
916786CC258CEE8000BB5B4E /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A13518420281768000F5FD5 /* Bolts.framework */; };
91CDB94C1A32E5C900FF830F /* PFEventuallyQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 91DF24911A09BA7600CFC7D4 /* PFEventuallyQueue.m */; };
91CDB94D1A32E5C900FF830F /* PFPinningEventuallyQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 91DF24951A09BAF100CFC7D4 /* PFPinningEventuallyQueue.m */; };
91CDB94E1A32E5E800FF830F /* PFEventuallyPin.m in Sources */ = {isa = PBXBuildFile; fileRef = 91115EF81A097AF30092D1C9 /* PFEventuallyPin.m */; };
Expand Down Expand Up @@ -2640,9 +2637,8 @@
B141170F1E5D081500F70D7A /* PFFileUploadResult.h in Headers */ = {isa = PBXBuildFile; fileRef = B141170A1E5D081500F70D7A /* PFFileUploadResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
B14117101E5D081500F70D7A /* PFFileUploadResult.h in Headers */ = {isa = PBXBuildFile; fileRef = B141170A1E5D081500F70D7A /* PFFileUploadResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
B14117111E5D081500F70D7A /* PFFileUploadResult.h in Headers */ = {isa = PBXBuildFile; fileRef = B141170A1E5D081500F70D7A /* PFFileUploadResult.h */; settings = {ATTRIBUTES = (Public, ); }; };
BC5511D6242E6E66008E5D9F /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCC5EAAC22D5F96600CF8900 /* Bolts.framework */; };
BCC5EAB322D5F97E00CF8900 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCC5EAB222D5F97D00CF8900 /* Bolts.framework */; };
BCC5EAB522D5F98F00CF8900 /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCC5EAB422D5F98F00CF8900 /* Bolts.framework */; };
BC150D7325A89F9C0092B00E /* Bolts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A13518820281768000F5FD5 /* Bolts.framework */; };
BCAFF87325A88B7800B95DFC /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BCAFF87225A88B7800B95DFC /* WebKit.framework */; platformFilter = ios; };
F50C66331B33A708001941A6 /* PFPushUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = F50C66311B33A708001941A6 /* PFPushUtilities.h */; settings = {ATTRIBUTES = (Private, ); }; };
F50C66341B33A708001941A6 /* PFPushUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F50C66321B33A708001941A6 /* PFPushUtilities.m */; };
F50C667C1B34B231001941A6 /* PFPushUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = F50C66321B33A708001941A6 /* PFPushUtilities.m */; };
Expand Down Expand Up @@ -2982,6 +2978,13 @@
remoteGlobalIDString = F0B950F01B0080BE00942C38;
remoteInfo = "OCMock iOS";
};
BCAFF88A25A88C4F00B95DFC /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = 4A1351082027FCFB000F5FD5 /* Bolts.xcodeproj */;
proxyType = 1;
remoteGlobalIDString = 81ED94111BE147CF00795F05;
remoteInfo = "Bolts-iOS";
};
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -3538,6 +3541,8 @@
B14116FB1E5D078E00F70D7A /* PFFileUploadResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PFFileUploadResult.m; sourceTree = "<group>"; };
B141170A1E5D081500F70D7A /* PFFileUploadResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PFFileUploadResult.h; sourceTree = "<group>"; };
BC105FBA24C5D0C900295EF7 /* OCMock.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = OCMock.xcodeproj; path = ../Carthage/Checkouts/OCMock/Source/OCMock.xcodeproj; sourceTree = "<group>"; };
BCAFF7EE25A88A7E00B95DFC /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.3.sdk/System/Library/Frameworks/WebKit.framework; sourceTree = DEVELOPER_DIR; };
BCAFF87225A88B7800B95DFC /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/iOSSupport/System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
BCC5EAAC22D5F96600CF8900 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Bolts.framework; path = ../Carthage/Build/iOS/Bolts.framework; sourceTree = "<group>"; };
BCC5EAB222D5F97D00CF8900 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Bolts.framework; path = ../Carthage/Build/tvOS/Bolts.framework; sourceTree = "<group>"; };
BCC5EAB422D5F98F00CF8900 /* Bolts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Bolts.framework; path = ../Carthage/Build/watchOS/Bolts.framework; sourceTree = "<group>"; };
Expand Down Expand Up @@ -3623,13 +3628,13 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BCAFF87325A88B7800B95DFC /* WebKit.framework in Frameworks */,
F5C42CC71B34C22100C720D8 /* AudioToolbox.framework in Frameworks */,
816F44761A8E8933009CDB32 /* StoreKit.framework in Frameworks */,
816F44771A8E8933009CDB32 /* libsqlite3.dylib in Frameworks */,
816F44781A8E8933009CDB32 /* Accounts.framework in Frameworks */,
816F44791A8E8933009CDB32 /* Social.framework in Frameworks */,
F5B0B3151B44A21100F3EBC4 /* SystemConfiguration.framework in Frameworks */,
816F44741A8E8933009CDB32 /* Parse.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand All @@ -3647,39 +3652,35 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
916786CC258CEE8000BB5B4E /* Bolts.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
81C5837E1C3B0A98000063C6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BC5511D6242E6E66008E5D9F /* Bolts.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
81C584F01C3B0AA1000063C6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BCC5EAB322D5F97E00CF8900 /* Bolts.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
81C5864B1C3B0AA9000063C6 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
BCC5EAB522D5F98F00CF8900 /* Bolts.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
97010FA91630B18F00AB761E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
4A13525F20283603000F5FD5 /* Bolts.framework in Frameworks */,
BC150D7325A89F9C0092B00E /* Bolts.framework in Frameworks */,
81B3F2021AC5DAA400A92677 /* Cocoa.framework in Frameworks */,
81B3F2011AC5DA7600A92677 /* libsqlite3.dylib in Frameworks */,
97DE045C163214C0007154E8 /* SystemConfiguration.framework in Frameworks */,
Expand Down Expand Up @@ -3908,6 +3909,8 @@
09D3364C139C54940098E916 /* Frameworks */ = {
isa = PBXGroup;
children = (
BCAFF7EE25A88A7E00B95DFC /* WebKit.framework */,
BCAFF87225A88B7800B95DFC /* WebKit.framework */,
BC105FBA24C5D0C900295EF7 /* OCMock.xcodeproj */,
BCC5EAAC22D5F96600CF8900 /* Bolts.framework */,
BCC5EAB222D5F97D00CF8900 /* Bolts.framework */,
Expand Down Expand Up @@ -6914,6 +6917,7 @@
buildRules = (
);
dependencies = (
BCAFF88B25A88C4F00B95DFC /* PBXTargetDependency */,
);
name = "Parse-iOS";
productName = "Parse-iOS";
Expand Down Expand Up @@ -8758,6 +8762,7 @@
};
4AE33A2D1F5451B20088DCA0 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
platformFilter = ios;
target = 4AE33A0A1F5451AD0088DCA0 /* ParseUnitTests-iOS-host */;
targetProxy = 4AE33A2C1F5451B20088DCA0 /* PBXContainerItemProxy */;
};
Expand All @@ -8780,8 +8785,14 @@
BC105FD524C5D0E100295EF7 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "OCMock iOS";
platformFilter = ios;
targetProxy = BC105FD424C5D0E100295EF7 /* PBXContainerItemProxy */;
};
BCAFF88B25A88C4F00B95DFC /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
name = "Bolts-iOS";
targetProxy = BCAFF88A25A88C4F00B95DFC /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */

/* Begin PBXVariantGroup section */
Expand All @@ -8808,7 +8819,7 @@
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.9;
};
name = Debug;
Expand All @@ -8825,7 +8836,7 @@
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
MACOSX_DEPLOYMENT_TARGET = 10.9;
SWIFT_COMPILATION_MODE = wholemodule;
};
Expand Down Expand Up @@ -8880,7 +8891,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "ParseUnitTests-iOS-host/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -8937,7 +8948,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
INFOPLIST_FILE = "ParseUnitTests-iOS-host/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -8971,13 +8982,15 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 815F24171BD04D310054659F /* Parse-tvOS.xcconfig */;
buildSettings = {
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
815F24141BD04D150054659F /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 815F24171BD04D310054659F /* Parse-tvOS.xcconfig */;
buildSettings = {
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Release;
};
Expand Down Expand Up @@ -9029,7 +9042,7 @@
buildSettings = {
CLANG_ENABLE_MODULES = YES;
DEFINES_MODULE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -9048,7 +9061,7 @@
buildSettings = {
CLANG_ENABLE_MODULES = YES;
DEFINES_MODULE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand All @@ -9065,6 +9078,7 @@
baseConfigurationReference = 81C582DE1C3B0A40000063C6 /* Parse-iOS-Dynamic.xcconfig */;
buildSettings = {
CLANG_MODULES_AUTOLINK = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
SUPPORTS_MACCATALYST = NO;
TARGETED_DEVICE_FAMILY = "1,2";
};
Expand All @@ -9075,6 +9089,7 @@
baseConfigurationReference = 81C582DE1C3B0A40000063C6 /* Parse-iOS-Dynamic.xcconfig */;
buildSettings = {
CLANG_MODULES_AUTOLINK = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
SUPPORTS_MACCATALYST = NO;
TARGETED_DEVICE_FAMILY = "1,2";
};
Expand All @@ -9085,6 +9100,7 @@
baseConfigurationReference = 81C582DF1C3B0A40000063C6 /* Parse-tvOS-Dynamic.xcconfig */;
buildSettings = {
CLANG_MODULES_AUTOLINK = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
Expand All @@ -9093,6 +9109,7 @@
baseConfigurationReference = 81C582DF1C3B0A40000063C6 /* Parse-tvOS-Dynamic.xcconfig */;
buildSettings = {
CLANG_MODULES_AUTOLINK = YES;
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Release;
};
Expand Down
2 changes: 1 addition & 1 deletion Parse/Parse/Resources/Parse-iOS.Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
<key>CFBundleVersion</key>
<string>1.19.1</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>9.0</string>
</dict>
</plist>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
PRODUCT_NAME = ParseFacebookUtilsV4-UnitTests
PRODUCT_BUNDLE_IDENTIFIER = com.parse.facebookutils-ios.unit

IPHONEOS_DEPLOYMENT_TARGET = 8.0
IPHONEOS_DEPLOYMENT_TARGET = 9.0

FRAMEWORK_SEARCH_PATHS = $(inherited) $(BUILT_PRODUCTS_DIR) $(SRCROOT)/Vendor

Expand Down
Loading