mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: As per the discussion on the previous [PR thread](https://github.com/facebook/react-native/pull/52028#issuecomment-2979481948), this PR uses `SwiftUI` to implement blur filter on iOS. ## Approach: To implement blur filter on iOS, we have two options: 1. Use `CAFilter` (private API, app can get rejected/API can break). Earlier [PR](https://github.com/facebook/react-native/pull/52028) was using that approach. Thanks to Nick for suggesting SwiftUI API. 2. Use `SwiftUI`. Wrap the view in a SwiftUI view and apply [blur](https://developer.apple.com/documentation/swiftui/view/blur(radius:opaque:)). This PR builds on top of that approach. This also enables a way to add `SwiftUI` only features like this one. Additional filters (grayscale, saturate, contrast, hueRotate) can also be added. There are a few ways we can implement the SwiftUI approach: 1. Create a new `RCTSwiftUIComponentView` -> do style flattening in View -> check if `filter` is present and conditionally render the `RCTSwiftUIComponentView` on iOS, wrap children with a `SwiftUI` view. Tradeoff with this approach is that it adds `StyleSheet.flatten` overhead on JS side. 2. Add a `SwiftUI` container view inside of `RCTViewComponentView`. Tradeoff with this approach is that it complicates `RCTViewComponentView` a bit. I decided to go with **2** to avoid the flattening tradeoff and try to minimize complicating `RCTViewComponentView`. it only adds the wrapper if it's required and removes if not (in this PR, blur filter style will add the wrapper, it will get removed if blur filter styling gets removed). It uses the existing container view pattern. ## Changelog: [IOS][ADDED] - Filter blur <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests Pull Request resolved: https://github.com/facebook/react-native/pull/52495 Test Plan: Test filter blur example on iOS. SwiftUI view should be added to the hierarchy. <img src="https://github.com/user-attachments/assets/742539f4-a96d-45f4-94ba-5eb588d0ad5a" width="300px" /> ## Aside: - This PR also adds a new swift podspec. Creating a new podspec felt the right approach as adding swift in existing ones were adding some complexity. But open for changes here. Also, need some eyes on the podspec configs. cc - chrfalch 🙏 this might also affect the SPM migration. - Unrelated: Existing brightness filter has some inconsistency compared to android and web, it uses [self.layer.opacity](https://github.com/facebook/react-native/blob/6892dde36373bbef2d0afe535ae818b1a7164f08/packages/react-native/React/Fabric/Mounting/ComponentViews/View/RCTViewComponentView.mm#L1008) so transparent background color do not blend well unless the view has an opacity. One solution would be to calculate true background color by using brightness or else use the `SwiftUI`'s [brightness](https://developer.apple.com/documentation/swiftui/view/brightness(_:)), which would be cleaner imo (tested and it works). Reviewed By: cipolleschi Differential Revision: D79666764 Pulled By: joevilches fbshipit-source-id: 05e43d75ce7b6f25b67b4eed632524a559ea1c2e
1257 lines
69 KiB
Plaintext
1257 lines
69 KiB
Plaintext
// !$*UTF8*$!
|
|
{
|
|
archiveVersion = 1;
|
|
classes = {
|
|
};
|
|
objectVersion = 54;
|
|
objects = {
|
|
|
|
/* Begin PBXBuildFile section */
|
|
0EA618032BE537D3001875EF /* RNTesterBundle.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 0EA618022BE537D3001875EF /* RNTesterBundle.bundle */; };
|
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
2DDEF0101F84BF7B00DBDF73 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2DDEF00F1F84BF7B00DBDF73 /* Images.xcassets */; };
|
|
383889DA23A7398900D06C3E /* RCTConvert_UIColorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 383889D923A7398900D06C3E /* RCTConvert_UIColorTests.m */; };
|
|
3D2AFAF51D646CF80089D1A3 /* legacy_image@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D2AFAF41D646CF80089D1A3 /* legacy_image@2x.png */; };
|
|
3F4D148C63BBF774A25488A6 /* libPods-RNTesterIntegrationTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 93A243F0D4D5C54911E811C4 /* libPods-RNTesterIntegrationTests.a */; };
|
|
46C0FD761B0B9B1E8662B759 /* libPods-RNTesterUnitTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B312B0EEE90BA411618B015 /* libPods-RNTesterUnitTests.a */; };
|
|
5C60EB1C226440DB0018C04F /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C60EB1B226440DB0018C04F /* AppDelegate.mm */; };
|
|
8145AE06241172D900A3F8DA /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8145AE05241172D900A3F8DA /* LaunchScreen.storyboard */; };
|
|
832F45BB2A8A6E1F0097B4E6 /* SwiftTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 832F45BA2A8A6E1F0097B4E6 /* SwiftTest.swift */; };
|
|
A975CA6C2C05EADF0043F72A /* RCTNetworkTaskTests.m in Sources */ = {isa = PBXBuildFile; fileRef = A975CA6B2C05EADE0043F72A /* RCTNetworkTaskTests.m */; };
|
|
C175B6D9ED9336FB66637943 /* libPods-RNTester.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C706D402EE4AF9BE838CBA9 /* libPods-RNTester.a */; };
|
|
CD10C7A5290BD4EB0033E1ED /* RCTEventEmitterTests.m in Sources */ = {isa = PBXBuildFile; fileRef = CD10C7A4290BD4EB0033E1ED /* RCTEventEmitterTests.m */; };
|
|
E62F11832A5C6580000BF1C8 /* FlexibleSizeExampleView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 27F441E81BEBE5030039B79C /* FlexibleSizeExampleView.mm */; };
|
|
E62F11842A5C6584000BF1C8 /* UpdatePropertiesExampleView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 272E6B3C1BEA849E001FCF37 /* UpdatePropertiesExampleView.mm */; };
|
|
E7C1241A22BEC44B00DA25C0 /* RNTesterIntegrationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7C1241922BEC44B00DA25C0 /* RNTesterIntegrationTests.m */; };
|
|
E7DB20D122B2BAA6005AC45F /* RCTBundleURLProviderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20A922B2BAA3005AC45F /* RCTBundleURLProviderTests.m */; };
|
|
E7DB20D222B2BAA6005AC45F /* RCTModuleInitNotificationRaceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20AA22B2BAA3005AC45F /* RCTModuleInitNotificationRaceTests.m */; };
|
|
E7DB20D322B2BAA6005AC45F /* RCTBlobManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20AB22B2BAA3005AC45F /* RCTBlobManagerTests.m */; };
|
|
E7DB20D522B2BAA6005AC45F /* RCTPerformanceLoggerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20AD22B2BAA3005AC45F /* RCTPerformanceLoggerTests.m */; };
|
|
E7DB20D622B2BAA6005AC45F /* RCTFontTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20AF22B2BAA4005AC45F /* RCTFontTests.m */; };
|
|
E7DB20D722B2BAA6005AC45F /* RCTModuleInitTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20B022B2BAA4005AC45F /* RCTModuleInitTests.m */; };
|
|
E7DB20D822B2BAA6005AC45F /* RCTJSONTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20B122B2BAA4005AC45F /* RCTJSONTests.m */; };
|
|
E7DB20D922B2BAA6005AC45F /* RCTAnimationUtilsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20B222B2BAA4005AC45F /* RCTAnimationUtilsTests.m */; };
|
|
E7DB20DA22B2BAA6005AC45F /* RNTesterUnitTestsBundle.js in Resources */ = {isa = PBXBuildFile; fileRef = E7DB20B322B2BAA4005AC45F /* RNTesterUnitTestsBundle.js */; };
|
|
E7DB20DB22B2BAA6005AC45F /* RCTNativeAnimatedNodesManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20BE22B2BAA4005AC45F /* RCTNativeAnimatedNodesManagerTests.m */; };
|
|
E7DB20DC22B2BAA6005AC45F /* RCTUIManagerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20BF22B2BAA4005AC45F /* RCTUIManagerTests.m */; };
|
|
E7DB20DD22B2BAA6005AC45F /* RCTEventDispatcherTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C022B2BAA4005AC45F /* RCTEventDispatcherTests.m */; };
|
|
E7DB20DE22B2BAA6005AC45F /* RCTUnicodeDecodeTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C122B2BAA4005AC45F /* RCTUnicodeDecodeTests.m */; };
|
|
E7DB20DF22B2BAA6005AC45F /* RCTImageLoaderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C222B2BAA4005AC45F /* RCTImageLoaderTests.m */; };
|
|
E7DB20E022B2BAA6005AC45F /* RCTMethodArgumentTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C322B2BAA4005AC45F /* RCTMethodArgumentTests.m */; };
|
|
E7DB20E122B2BAA6005AC45F /* RCTShadowViewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C422B2BAA4005AC45F /* RCTShadowViewTests.m */; };
|
|
E7DB20E222B2BAA6005AC45F /* RCTGzipTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C522B2BAA4005AC45F /* RCTGzipTests.m */; };
|
|
E7DB20E322B2BAA6005AC45F /* RCTAllocationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C622B2BAA5005AC45F /* RCTAllocationTests.m */; };
|
|
E7DB20E422B2BAA6005AC45F /* RCTFormatErrorTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C722B2BAA5005AC45F /* RCTFormatErrorTests.m */; };
|
|
E7DB20E522B2BAA6005AC45F /* RCTDevMenuTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C822B2BAA5005AC45F /* RCTDevMenuTests.m */; };
|
|
E7DB20E622B2BAA6005AC45F /* RCTImageLoaderHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20C922B2BAA5005AC45F /* RCTImageLoaderHelpers.m */; };
|
|
E7DB20E722B2BAA6005AC45F /* RCTConvert_NSURLTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CA22B2BAA5005AC45F /* RCTConvert_NSURLTests.m */; };
|
|
E7DB20E822B2BAA6005AC45F /* RCTModuleMethodTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CB22B2BAA5005AC45F /* RCTModuleMethodTests.mm */; };
|
|
E7DB20E922B2BAA6005AC45F /* RCTComponentPropsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CC22B2BAA5005AC45F /* RCTComponentPropsTests.m */; };
|
|
E7DB20EA22B2BAA6005AC45F /* RCTImageUtilTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CD22B2BAA5005AC45F /* RCTImageUtilTests.m */; };
|
|
E7DB20EB22B2BAA6005AC45F /* RCTConvert_YGValueTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CE22B2BAA5005AC45F /* RCTConvert_YGValueTests.m */; };
|
|
E7DB20EC22B2BAA6005AC45F /* RCTMultipartStreamReaderTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20CF22B2BAA5005AC45F /* RCTMultipartStreamReaderTests.m */; };
|
|
E7DB20ED22B2BAA6005AC45F /* RCTURLUtilsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20D022B2BAA5005AC45F /* RCTURLUtilsTests.m */; };
|
|
E7DB20EE22B2BAA6005AC45F /* RCTViewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB20E022B2BAA5005AC45F /* RCTViewTests.m */; };
|
|
E7DB213122B2C649005AC45F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7DB213022B2C649005AC45F /* JavaScriptCore.framework */; };
|
|
E7DB216222B2F3EC005AC45F /* RNTesterTestModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB215D22B2F3EC005AC45F /* RNTesterTestModule.m */; };
|
|
E7DB216322B2F3EC005AC45F /* RCTLoggingTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB215E22B2F3EC005AC45F /* RCTLoggingTests.m */; };
|
|
E7DB216422B2F3EC005AC45F /* RCTUIManagerScenarioTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E7DB215F22B2F3EC005AC45F /* RCTUIManagerScenarioTests.m */; };
|
|
E7DB216722B2F69F005AC45F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7DB213022B2C649005AC45F /* JavaScriptCore.framework */; };
|
|
E7DB218C22B41FCD005AC45F /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7DB218B22B41FCD005AC45F /* XCTest.framework */; };
|
|
F0D621C32BBB9E38005960AC /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = F0D621C22BBB9E38005960AC /* PrivacyInfo.xcprivacy */; };
|
|
/* End PBXBuildFile section */
|
|
|
|
/* Begin PBXContainerItemProxy section */
|
|
ADA4EF572546F3F8000B7E75 /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
remoteInfo = RNTester;
|
|
};
|
|
E7DB215822B2F332005AC45F /* PBXContainerItemProxy */ = {
|
|
isa = PBXContainerItemProxy;
|
|
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
proxyType = 1;
|
|
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
remoteInfo = RNTester;
|
|
};
|
|
/* End PBXContainerItemProxy section */
|
|
|
|
/* Begin PBXFileReference section */
|
|
0EA618022BE537D3001875EF /* RNTesterBundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = RNTesterBundle.bundle; path = RNTester/RNTesterBundle.bundle; sourceTree = "<group>"; };
|
|
13B07F961A680F5B00A75B9A /* RNTester.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNTester.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNTester/AppDelegate.h; sourceTree = "<group>"; };
|
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNTester/Info.plist; sourceTree = "<group>"; };
|
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNTester/main.m; sourceTree = "<group>"; };
|
|
20B55D3C33B683598D2A4424 /* Pods-RNTesterIntegrationTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTesterIntegrationTests.debug.xcconfig"; path = "Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
272E6B3B1BEA849E001FCF37 /* UpdatePropertiesExampleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = UpdatePropertiesExampleView.h; path = RNTester/NativeExampleViews/UpdatePropertiesExampleView.h; sourceTree = "<group>"; };
|
|
272E6B3C1BEA849E001FCF37 /* UpdatePropertiesExampleView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = UpdatePropertiesExampleView.mm; path = RNTester/NativeExampleViews/UpdatePropertiesExampleView.mm; sourceTree = "<group>"; };
|
|
27F441E81BEBE5030039B79C /* FlexibleSizeExampleView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = FlexibleSizeExampleView.mm; path = RNTester/NativeExampleViews/FlexibleSizeExampleView.mm; sourceTree = "<group>"; };
|
|
27F441EA1BEBE5030039B79C /* FlexibleSizeExampleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FlexibleSizeExampleView.h; path = RNTester/NativeExampleViews/FlexibleSizeExampleView.h; sourceTree = "<group>"; };
|
|
2B312B0EEE90BA411618B015 /* libPods-RNTesterUnitTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNTesterUnitTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
2DDEF00F1F84BF7B00DBDF73 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNTester/Images.xcassets; sourceTree = "<group>"; };
|
|
383889D923A7398900D06C3E /* RCTConvert_UIColorTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTConvert_UIColorTests.m; sourceTree = "<group>"; };
|
|
3D2AFAF41D646CF80089D1A3 /* legacy_image@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "legacy_image@2x.png"; path = "RNTester/legacy_image@2x.png"; sourceTree = "<group>"; };
|
|
3FF60722627F93D8F62FA1E3 /* Pods-RNTesterUnitTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTesterUnitTests.release.xcconfig"; path = "Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
4C706D402EE4AF9BE838CBA9 /* libPods-RNTester.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNTester.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
51BC9297B6C3163C14532020 /* Pods-RNTester.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTester.release.xcconfig"; path = "Target Support Files/Pods-RNTester/Pods-RNTester.release.xcconfig"; sourceTree = "<group>"; };
|
|
5C60EB1B226440DB0018C04F /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = RNTester/AppDelegate.mm; sourceTree = "<group>"; };
|
|
8145AE05241172D900A3F8DA /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = RNTester/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
832F45BA2A8A6E1F0097B4E6 /* SwiftTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = SwiftTest.swift; path = RNTester/SwiftTest.swift; sourceTree = "<group>"; };
|
|
93A243F0D4D5C54911E811C4 /* libPods-RNTesterIntegrationTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNTesterIntegrationTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
A975CA6B2C05EADE0043F72A /* RCTNetworkTaskTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTaskTests.m; sourceTree = "<group>"; };
|
|
AC474BFB29BBD4A1002BDAED /* RNTester.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; name = RNTester.xctestplan; path = RNTester/RNTester.xctestplan; sourceTree = "<group>"; };
|
|
B0E70A8A05E03E868F8703FE /* Pods-RNTesterIntegrationTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTesterIntegrationTests.release.xcconfig"; path = "Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
CA59C9994B1822826D8983F0 /* Pods-RNTester.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTester.debug.xcconfig"; path = "Target Support Files/Pods-RNTester/Pods-RNTester.debug.xcconfig"; sourceTree = "<group>"; };
|
|
CD10C7A4290BD4EB0033E1ED /* RCTEventEmitterTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitterTests.m; sourceTree = "<group>"; };
|
|
D134EB89DD98253FCF879A47 /* Pods-RNTesterUnitTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNTesterUnitTests.debug.xcconfig"; path = "Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
E771AEEA22B44E3100EA1189 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNTester/Info.plist; sourceTree = "<group>"; };
|
|
E7C1241922BEC44B00DA25C0 /* RNTesterIntegrationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNTesterIntegrationTests.m; sourceTree = "<group>"; };
|
|
E7DB209F22B2BA84005AC45F /* RNTesterUnitTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNTesterUnitTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20A322B2BA84005AC45F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
E7DB20A922B2BAA3005AC45F /* RCTBundleURLProviderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProviderTests.m; sourceTree = "<group>"; };
|
|
E7DB20AA22B2BAA3005AC45F /* RCTModuleInitNotificationRaceTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTModuleInitNotificationRaceTests.m; sourceTree = "<group>"; };
|
|
E7DB20AB22B2BAA3005AC45F /* RCTBlobManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTBlobManagerTests.m; sourceTree = "<group>"; };
|
|
E7DB20AD22B2BAA3005AC45F /* RCTPerformanceLoggerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLoggerTests.m; sourceTree = "<group>"; };
|
|
E7DB20AE22B2BAA4005AC45F /* RCTImageLoaderHelpers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTImageLoaderHelpers.h; sourceTree = "<group>"; };
|
|
E7DB20AF22B2BAA4005AC45F /* RCTFontTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTFontTests.m; sourceTree = "<group>"; };
|
|
E7DB20B022B2BAA4005AC45F /* RCTModuleInitTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTModuleInitTests.m; sourceTree = "<group>"; };
|
|
E7DB20B122B2BAA4005AC45F /* RCTJSONTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTJSONTests.m; sourceTree = "<group>"; };
|
|
E7DB20B222B2BAA4005AC45F /* RCTAnimationUtilsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtilsTests.m; sourceTree = "<group>"; };
|
|
E7DB20B322B2BAA4005AC45F /* RNTesterUnitTestsBundle.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; path = RNTesterUnitTestsBundle.js; sourceTree = "<group>"; };
|
|
E7DB20BE22B2BAA4005AC45F /* RCTNativeAnimatedNodesManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManagerTests.m; sourceTree = "<group>"; };
|
|
E7DB20BF22B2BAA4005AC45F /* RCTUIManagerTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerTests.m; sourceTree = "<group>"; };
|
|
E7DB20C022B2BAA4005AC45F /* RCTEventDispatcherTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcherTests.m; sourceTree = "<group>"; };
|
|
E7DB20C122B2BAA4005AC45F /* RCTUnicodeDecodeTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTUnicodeDecodeTests.m; sourceTree = "<group>"; };
|
|
E7DB20C222B2BAA4005AC45F /* RCTImageLoaderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTImageLoaderTests.m; sourceTree = "<group>"; };
|
|
E7DB20C322B2BAA4005AC45F /* RCTMethodArgumentTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTMethodArgumentTests.m; sourceTree = "<group>"; };
|
|
E7DB20C422B2BAA4005AC45F /* RCTShadowViewTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTShadowViewTests.m; sourceTree = "<group>"; };
|
|
E7DB20C522B2BAA4005AC45F /* RCTGzipTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTGzipTests.m; sourceTree = "<group>"; };
|
|
E7DB20C622B2BAA5005AC45F /* RCTAllocationTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTAllocationTests.m; sourceTree = "<group>"; };
|
|
E7DB20C722B2BAA5005AC45F /* RCTFormatErrorTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTFormatErrorTests.m; sourceTree = "<group>"; };
|
|
E7DB20C822B2BAA5005AC45F /* RCTDevMenuTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenuTests.m; sourceTree = "<group>"; };
|
|
E7DB20C922B2BAA5005AC45F /* RCTImageLoaderHelpers.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTImageLoaderHelpers.m; sourceTree = "<group>"; };
|
|
E7DB20CA22B2BAA5005AC45F /* RCTConvert_NSURLTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTConvert_NSURLTests.m; sourceTree = "<group>"; };
|
|
E7DB20CB22B2BAA5005AC45F /* RCTModuleMethodTests.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RCTModuleMethodTests.mm; sourceTree = "<group>"; };
|
|
E7DB20CC22B2BAA5005AC45F /* RCTComponentPropsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTComponentPropsTests.m; sourceTree = "<group>"; };
|
|
E7DB20CD22B2BAA5005AC45F /* RCTImageUtilTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtilTests.m; sourceTree = "<group>"; };
|
|
E7DB20CE22B2BAA5005AC45F /* RCTConvert_YGValueTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTConvert_YGValueTests.m; sourceTree = "<group>"; };
|
|
E7DB20CF22B2BAA5005AC45F /* RCTMultipartStreamReaderTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReaderTests.m; sourceTree = "<group>"; };
|
|
E7DB20D022B2BAA5005AC45F /* RCTURLUtilsTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTURLUtilsTests.m; sourceTree = "<group>"; };
|
|
E7DB20E022B2BAA5005AC45F /* RCTViewTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTViewTests.m; sourceTree = "<group>"; };
|
|
E7DB20F022B2BD53005AC45F /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20F222B2BD53005AC45F /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20F422B2BD53005AC45F /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20F822B2BD53005AC45F /* libReact-ART.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-ART.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20FA22B2BD53005AC45F /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB20FC22B2BD53005AC45F /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210222B2BD53005AC45F /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210422B2BD53005AC45F /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210622B2BD53005AC45F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210822B2BD53005AC45F /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210A22B2BD53005AC45F /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210C22B2BD53005AC45F /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB210E22B2BD53005AC45F /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211022B2BD53005AC45F /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211222B2BD53005AC45F /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211422B2BD53005AC45F /* libReact-RCTPushNotification.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTPushNotification.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211622B2BD53005AC45F /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211822B2BD53005AC45F /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB211A22B2BD53005AC45F /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB212222B2BD53005AC45F /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB213022B2C649005AC45F /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
E7DB215322B2F332005AC45F /* RNTesterIntegrationTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNTesterIntegrationTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
E7DB215722B2F332005AC45F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
E7DB215D22B2F3EC005AC45F /* RNTesterTestModule.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RNTesterTestModule.m; sourceTree = "<group>"; };
|
|
E7DB215E22B2F3EC005AC45F /* RCTLoggingTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTLoggingTests.m; sourceTree = "<group>"; };
|
|
E7DB215F22B2F3EC005AC45F /* RCTUIManagerScenarioTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerScenarioTests.m; sourceTree = "<group>"; };
|
|
E7DB218B22B41FCD005AC45F /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = XCTest.framework; sourceTree = DEVELOPER_DIR; };
|
|
F0D621C22BBB9E38005960AC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
/* End PBXFileReference section */
|
|
|
|
/* Begin PBXFrameworksBuildPhase section */
|
|
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
C175B6D9ED9336FB66637943 /* libPods-RNTester.a in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB209C22B2BA84005AC45F /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
E7DB213122B2C649005AC45F /* JavaScriptCore.framework in Frameworks */,
|
|
46C0FD761B0B9B1E8662B759 /* libPods-RNTesterUnitTests.a in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB215022B2F332005AC45F /* Frameworks */ = {
|
|
isa = PBXFrameworksBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
E7DB218C22B41FCD005AC45F /* XCTest.framework in Frameworks */,
|
|
E7DB216722B2F69F005AC45F /* JavaScriptCore.framework in Frameworks */,
|
|
3F4D148C63BBF774A25488A6 /* libPods-RNTesterIntegrationTests.a in Frameworks */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXFrameworksBuildPhase section */
|
|
|
|
/* Begin PBXGroup section */
|
|
1323F18D1C04ABAC0091BED0 /* Supporting Files */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
3D2AFAF41D646CF80089D1A3 /* legacy_image@2x.png */,
|
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
);
|
|
name = "Supporting Files";
|
|
sourceTree = "<group>";
|
|
};
|
|
13B07FAE1A68108700A75B9A /* RNTester */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
F0D621C22BBB9E38005960AC /* PrivacyInfo.xcprivacy */,
|
|
AC474BFB29BBD4A1002BDAED /* RNTester.xctestplan */,
|
|
E771AEEA22B44E3100EA1189 /* Info.plist */,
|
|
13B07FAF1A68108700A75B9A /* AppDelegate.h */,
|
|
5C60EB1B226440DB0018C04F /* AppDelegate.mm */,
|
|
13B07FB71A68108700A75B9A /* main.m */,
|
|
832F45BA2A8A6E1F0097B4E6 /* SwiftTest.swift */,
|
|
2DDEF00F1F84BF7B00DBDF73 /* Images.xcassets */,
|
|
8145AE05241172D900A3F8DA /* LaunchScreen.storyboard */,
|
|
680759612239798500290469 /* Fabric */,
|
|
272E6B3A1BEA846C001FCF37 /* NativeExampleViews */,
|
|
1323F18D1C04ABAC0091BED0 /* Supporting Files */,
|
|
);
|
|
name = RNTester;
|
|
sourceTree = "<group>";
|
|
};
|
|
272E6B3A1BEA846C001FCF37 /* NativeExampleViews */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
27F441E81BEBE5030039B79C /* FlexibleSizeExampleView.mm */,
|
|
27F441EA1BEBE5030039B79C /* FlexibleSizeExampleView.h */,
|
|
272E6B3B1BEA849E001FCF37 /* UpdatePropertiesExampleView.h */,
|
|
272E6B3C1BEA849E001FCF37 /* UpdatePropertiesExampleView.mm */,
|
|
);
|
|
name = NativeExampleViews;
|
|
sourceTree = "<group>";
|
|
};
|
|
2DE7E7D81FB2A4F3009E225D /* Frameworks */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
E7DB218B22B41FCD005AC45F /* XCTest.framework */,
|
|
E7DB213022B2C649005AC45F /* JavaScriptCore.framework */,
|
|
E7DB20F022B2BD53005AC45F /* libDoubleConversion.a */,
|
|
E7DB20F222B2BD53005AC45F /* libFolly.a */,
|
|
E7DB20F422B2BD53005AC45F /* libglog.a */,
|
|
E7DB20F822B2BD53005AC45F /* libReact-ART.a */,
|
|
E7DB20FA22B2BD53005AC45F /* libReact-Core.a */,
|
|
E7DB20FC22B2BD53005AC45F /* libReact-cxxreact.a */,
|
|
E7DB210222B2BD53005AC45F /* libReact-jsi.a */,
|
|
E7DB210422B2BD53005AC45F /* libReact-jsiexecutor.a */,
|
|
E7DB210622B2BD53005AC45F /* libReact-jsinspector.a */,
|
|
E7DB210822B2BD53005AC45F /* libReact-RCTActionSheet.a */,
|
|
E7DB210A22B2BD53005AC45F /* libReact-RCTAnimation.a */,
|
|
E7DB210C22B2BD53005AC45F /* libReact-RCTBlob.a */,
|
|
E7DB210E22B2BD53005AC45F /* libReact-RCTImage.a */,
|
|
E7DB211022B2BD53005AC45F /* libReact-RCTLinking.a */,
|
|
E7DB211222B2BD53005AC45F /* libReact-RCTNetwork.a */,
|
|
E7DB211422B2BD53005AC45F /* libReact-RCTPushNotification.a */,
|
|
E7DB211622B2BD53005AC45F /* libReact-RCTSettings.a */,
|
|
E7DB211822B2BD53005AC45F /* libReact-RCTText.a */,
|
|
E7DB211A22B2BD53005AC45F /* libReact-RCTVibration.a */,
|
|
E7DB212222B2BD53005AC45F /* libyoga.a */,
|
|
4C706D402EE4AF9BE838CBA9 /* libPods-RNTester.a */,
|
|
93A243F0D4D5C54911E811C4 /* libPods-RNTesterIntegrationTests.a */,
|
|
2B312B0EEE90BA411618B015 /* libPods-RNTesterUnitTests.a */,
|
|
);
|
|
name = Frameworks;
|
|
sourceTree = "<group>";
|
|
};
|
|
680759612239798500290469 /* Fabric */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
);
|
|
name = Fabric;
|
|
sourceTree = "<group>";
|
|
};
|
|
83CBB9F61A601CBA00E9B192 = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
0EA618022BE537D3001875EF /* RNTesterBundle.bundle */,
|
|
13B07FAE1A68108700A75B9A /* RNTester */,
|
|
E7DB20A022B2BA84005AC45F /* RNTesterUnitTests */,
|
|
E7DB215422B2F332005AC45F /* RNTesterIntegrationTests */,
|
|
83CBBA001A601CBA00E9B192 /* Products */,
|
|
2DE7E7D81FB2A4F3009E225D /* Frameworks */,
|
|
E23BD6487B06BD71F1A86914 /* Pods */,
|
|
);
|
|
indentWidth = 2;
|
|
sourceTree = "<group>";
|
|
tabWidth = 2;
|
|
usesTabs = 0;
|
|
};
|
|
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
13B07F961A680F5B00A75B9A /* RNTester.app */,
|
|
E7DB209F22B2BA84005AC45F /* RNTesterUnitTests.xctest */,
|
|
E7DB215322B2F332005AC45F /* RNTesterIntegrationTests.xctest */,
|
|
);
|
|
name = Products;
|
|
sourceTree = "<group>";
|
|
};
|
|
E23BD6487B06BD71F1A86914 /* Pods */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
CA59C9994B1822826D8983F0 /* Pods-RNTester.debug.xcconfig */,
|
|
51BC9297B6C3163C14532020 /* Pods-RNTester.release.xcconfig */,
|
|
20B55D3C33B683598D2A4424 /* Pods-RNTesterIntegrationTests.debug.xcconfig */,
|
|
B0E70A8A05E03E868F8703FE /* Pods-RNTesterIntegrationTests.release.xcconfig */,
|
|
D134EB89DD98253FCF879A47 /* Pods-RNTesterUnitTests.debug.xcconfig */,
|
|
3FF60722627F93D8F62FA1E3 /* Pods-RNTesterUnitTests.release.xcconfig */,
|
|
);
|
|
path = Pods;
|
|
sourceTree = "<group>";
|
|
};
|
|
E7DB20A022B2BA84005AC45F /* RNTesterUnitTests */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
CD10C7A4290BD4EB0033E1ED /* RCTEventEmitterTests.m */,
|
|
E7DB20A322B2BA84005AC45F /* Info.plist */,
|
|
E7DB20C622B2BAA5005AC45F /* RCTAllocationTests.m */,
|
|
E7DB20B222B2BAA4005AC45F /* RCTAnimationUtilsTests.m */,
|
|
E7DB20AB22B2BAA3005AC45F /* RCTBlobManagerTests.m */,
|
|
E7DB20A922B2BAA3005AC45F /* RCTBundleURLProviderTests.m */,
|
|
E7DB20CC22B2BAA5005AC45F /* RCTComponentPropsTests.m */,
|
|
E7DB20CA22B2BAA5005AC45F /* RCTConvert_NSURLTests.m */,
|
|
E7DB20CE22B2BAA5005AC45F /* RCTConvert_YGValueTests.m */,
|
|
383889D923A7398900D06C3E /* RCTConvert_UIColorTests.m */,
|
|
E7DB20C822B2BAA5005AC45F /* RCTDevMenuTests.m */,
|
|
E7DB20C022B2BAA4005AC45F /* RCTEventDispatcherTests.m */,
|
|
E7DB20AF22B2BAA4005AC45F /* RCTFontTests.m */,
|
|
E7DB20C722B2BAA5005AC45F /* RCTFormatErrorTests.m */,
|
|
E7DB20C522B2BAA4005AC45F /* RCTGzipTests.m */,
|
|
E7DB20AE22B2BAA4005AC45F /* RCTImageLoaderHelpers.h */,
|
|
E7DB20C922B2BAA5005AC45F /* RCTImageLoaderHelpers.m */,
|
|
E7DB20C222B2BAA4005AC45F /* RCTImageLoaderTests.m */,
|
|
E7DB20CD22B2BAA5005AC45F /* RCTImageUtilTests.m */,
|
|
E7DB20B122B2BAA4005AC45F /* RCTJSONTests.m */,
|
|
E7DB20C322B2BAA4005AC45F /* RCTMethodArgumentTests.m */,
|
|
E7DB20AA22B2BAA3005AC45F /* RCTModuleInitNotificationRaceTests.m */,
|
|
E7DB20B022B2BAA4005AC45F /* RCTModuleInitTests.m */,
|
|
E7DB20CB22B2BAA5005AC45F /* RCTModuleMethodTests.mm */,
|
|
E7DB20CF22B2BAA5005AC45F /* RCTMultipartStreamReaderTests.m */,
|
|
A975CA6B2C05EADE0043F72A /* RCTNetworkTaskTests.m */,
|
|
E7DB20BE22B2BAA4005AC45F /* RCTNativeAnimatedNodesManagerTests.m */,
|
|
E7DB20AD22B2BAA3005AC45F /* RCTPerformanceLoggerTests.m */,
|
|
E7DB20C422B2BAA4005AC45F /* RCTShadowViewTests.m */,
|
|
E7DB20BF22B2BAA4005AC45F /* RCTUIManagerTests.m */,
|
|
E7DB20C122B2BAA4005AC45F /* RCTUnicodeDecodeTests.m */,
|
|
E7DB20D022B2BAA5005AC45F /* RCTURLUtilsTests.m */,
|
|
E7DB20E022B2BAA5005AC45F /* RCTViewTests.m */,
|
|
E7DB20B322B2BAA4005AC45F /* RNTesterUnitTestsBundle.js */,
|
|
);
|
|
path = RNTesterUnitTests;
|
|
sourceTree = "<group>";
|
|
};
|
|
E7DB215422B2F332005AC45F /* RNTesterIntegrationTests */ = {
|
|
isa = PBXGroup;
|
|
children = (
|
|
E7C1241922BEC44B00DA25C0 /* RNTesterIntegrationTests.m */,
|
|
E7DB215E22B2F3EC005AC45F /* RCTLoggingTests.m */,
|
|
E7DB215F22B2F3EC005AC45F /* RCTUIManagerScenarioTests.m */,
|
|
E7DB215D22B2F3EC005AC45F /* RNTesterTestModule.m */,
|
|
E7DB215722B2F332005AC45F /* Info.plist */,
|
|
);
|
|
path = RNTesterIntegrationTests;
|
|
sourceTree = "<group>";
|
|
};
|
|
/* End PBXGroup section */
|
|
|
|
/* Begin PBXNativeTarget section */
|
|
13B07F861A680F5B00A75B9A /* RNTester */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNTester" */;
|
|
buildPhases = (
|
|
F28F13DD10D40D98C0BB7BE8 /* [CP] Check Pods Manifest.lock */,
|
|
13B07F871A680F5B00A75B9A /* Sources */,
|
|
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
68CD48B71D2BCB2C007E06A9 /* Build JS Bundle */,
|
|
79E8BE2B119D4C5CCD2F04B3 /* [RN] Copy Hermes Framework */,
|
|
17FE348EDF12252D972FFC2F /* [CP] Embed Pods Frameworks */,
|
|
DFEE284B22AD5E88BBF1026A /* [CP] Copy Pods Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
);
|
|
name = RNTester;
|
|
productName = "Hello World";
|
|
productReference = 13B07F961A680F5B00A75B9A /* RNTester.app */;
|
|
productType = "com.apple.product-type.application";
|
|
};
|
|
E7DB209E22B2BA84005AC45F /* RNTesterUnitTests */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = E7DB20A622B2BA84005AC45F /* Build configuration list for PBXNativeTarget "RNTesterUnitTests" */;
|
|
buildPhases = (
|
|
B8A88048D4E22316B9E74600 /* [CP] Check Pods Manifest.lock */,
|
|
E7DB209B22B2BA84005AC45F /* Sources */,
|
|
E7DB209C22B2BA84005AC45F /* Frameworks */,
|
|
E7DB209D22B2BA84005AC45F /* Resources */,
|
|
FD96BE05C0CECDF7D53C7CC9 /* [CP] Embed Pods Frameworks */,
|
|
5ECFFC3767E171859C7610A6 /* [CP] Copy Pods Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
ADA4EF582546F3F8000B7E75 /* PBXTargetDependency */,
|
|
);
|
|
name = RNTesterUnitTests;
|
|
productName = RNTesterUnitTests;
|
|
productReference = E7DB209F22B2BA84005AC45F /* RNTesterUnitTests.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
E7DB215222B2F332005AC45F /* RNTesterIntegrationTests */ = {
|
|
isa = PBXNativeTarget;
|
|
buildConfigurationList = E7DB215A22B2F332005AC45F /* Build configuration list for PBXNativeTarget "RNTesterIntegrationTests" */;
|
|
buildPhases = (
|
|
2978D2EE0533828E5DB62B8F /* [CP] Check Pods Manifest.lock */,
|
|
E7DB214F22B2F332005AC45F /* Sources */,
|
|
E7DB215022B2F332005AC45F /* Frameworks */,
|
|
E7DB215122B2F332005AC45F /* Resources */,
|
|
A27E74B2EEF82EC119BCB5A2 /* [CP] Embed Pods Frameworks */,
|
|
48BF6B9FD13CB20F2C71C2A2 /* [CP] Copy Pods Resources */,
|
|
);
|
|
buildRules = (
|
|
);
|
|
dependencies = (
|
|
E7DB215922B2F332005AC45F /* PBXTargetDependency */,
|
|
);
|
|
name = RNTesterIntegrationTests;
|
|
productName = RNTesterIntegrationTests;
|
|
productReference = E7DB215322B2F332005AC45F /* RNTesterIntegrationTests.xctest */;
|
|
productType = "com.apple.product-type.bundle.unit-test";
|
|
};
|
|
/* End PBXNativeTarget section */
|
|
|
|
/* Begin PBXProject section */
|
|
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
isa = PBXProject;
|
|
attributes = {
|
|
LastUpgradeCheck = 1210;
|
|
ORGANIZATIONNAME = Facebook;
|
|
TargetAttributes = {
|
|
13B07F861A680F5B00A75B9A = {
|
|
LastSwiftMigration = 1430;
|
|
};
|
|
E7DB209E22B2BA84005AC45F = {
|
|
CreatedOnToolsVersion = 10.2.1;
|
|
};
|
|
E7DB215222B2F332005AC45F = {
|
|
CreatedOnToolsVersion = 10.2.1;
|
|
TestTargetID = 13B07F861A680F5B00A75B9A;
|
|
};
|
|
};
|
|
};
|
|
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNTesterPods" */;
|
|
compatibilityVersion = "Xcode 12.0";
|
|
developmentRegion = en;
|
|
hasScannedForEncodings = 0;
|
|
knownRegions = (
|
|
en,
|
|
Base,
|
|
);
|
|
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
projectDirPath = "";
|
|
projectRoot = "";
|
|
targets = (
|
|
13B07F861A680F5B00A75B9A /* RNTester */,
|
|
E7DB209E22B2BA84005AC45F /* RNTesterUnitTests */,
|
|
E7DB215222B2F332005AC45F /* RNTesterIntegrationTests */,
|
|
);
|
|
};
|
|
/* End PBXProject section */
|
|
|
|
/* Begin PBXResourcesBuildPhase section */
|
|
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
2DDEF0101F84BF7B00DBDF73 /* Images.xcassets in Resources */,
|
|
8145AE06241172D900A3F8DA /* LaunchScreen.storyboard in Resources */,
|
|
0EA618032BE537D3001875EF /* RNTesterBundle.bundle in Resources */,
|
|
F0D621C32BBB9E38005960AC /* PrivacyInfo.xcprivacy in Resources */,
|
|
3D2AFAF51D646CF80089D1A3 /* legacy_image@2x.png in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB209D22B2BA84005AC45F /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
E7DB20DA22B2BAA6005AC45F /* RNTesterUnitTestsBundle.js in Resources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB215122B2F332005AC45F /* Resources */ = {
|
|
isa = PBXResourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXResourcesBuildPhase section */
|
|
|
|
/* Begin PBXShellScriptBuildPhase section */
|
|
17FE348EDF12252D972FFC2F /* [CP] Embed Pods Frameworks */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Embed Pods Frameworks";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-frameworks.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
2978D2EE0533828E5DB62B8F /* [CP] Check Pods Manifest.lock */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
);
|
|
inputPaths = (
|
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
"${PODS_ROOT}/Manifest.lock",
|
|
);
|
|
name = "[CP] Check Pods Manifest.lock";
|
|
outputFileListPaths = (
|
|
);
|
|
outputPaths = (
|
|
"$(DERIVED_FILE_DIR)/Pods-RNTesterIntegrationTests-checkManifestLockResult.txt",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
48BF6B9FD13CB20F2C71C2A2 /* [CP] Copy Pods Resources */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Copy Pods Resources";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-resources.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
5ECFFC3767E171859C7610A6 /* [CP] Copy Pods Resources */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Copy Pods Resources";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-resources.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
68CD48B71D2BCB2C007E06A9 /* Build JS Bundle */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputPaths = (
|
|
"$(SRCROOT)/.xcode.env.local",
|
|
"$(SRCROOT)/.xcode.env",
|
|
);
|
|
name = "Build JS Bundle";
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "set -e\n\nexport PROJECT_ROOT=\"$SRCROOT\"\nexport ENTRY_FILE=\"$SRCROOT/js/RNTesterApp.ios.js\"\nexport SOURCEMAP_FILE=../sourcemap.ios.map\n# export FORCE_BUNDLING=true \n\nWITH_ENVIRONMENT=\"../react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
};
|
|
79E8BE2B119D4C5CCD2F04B3 /* [RN] Copy Hermes Framework */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
);
|
|
inputPaths = (
|
|
);
|
|
name = "[RN] Copy Hermes Framework";
|
|
outputFileListPaths = (
|
|
);
|
|
outputPaths = (
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = ". ../react-native/sdks/hermes-engine/utils/copy-hermes-xcode.sh\n";
|
|
};
|
|
A27E74B2EEF82EC119BCB5A2 /* [CP] Embed Pods Frameworks */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Embed Pods Frameworks";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTesterIntegrationTests/Pods-RNTesterIntegrationTests-frameworks.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
B8A88048D4E22316B9E74600 /* [CP] Check Pods Manifest.lock */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
);
|
|
inputPaths = (
|
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
"${PODS_ROOT}/Manifest.lock",
|
|
);
|
|
name = "[CP] Check Pods Manifest.lock";
|
|
outputFileListPaths = (
|
|
);
|
|
outputPaths = (
|
|
"$(DERIVED_FILE_DIR)/Pods-RNTesterUnitTests-checkManifestLockResult.txt",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
DFEE284B22AD5E88BBF1026A /* [CP] Copy Pods Resources */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Copy Pods Resources";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTester/Pods-RNTester-resources.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
F28F13DD10D40D98C0BB7BE8 /* [CP] Check Pods Manifest.lock */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
);
|
|
inputPaths = (
|
|
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
"${PODS_ROOT}/Manifest.lock",
|
|
);
|
|
name = "[CP] Check Pods Manifest.lock";
|
|
outputFileListPaths = (
|
|
);
|
|
outputPaths = (
|
|
"$(DERIVED_FILE_DIR)/Pods-RNTester-checkManifestLockResult.txt",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
FD96BE05C0CECDF7D53C7CC9 /* [CP] Embed Pods Frameworks */ = {
|
|
isa = PBXShellScriptBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
);
|
|
inputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
);
|
|
name = "[CP] Embed Pods Frameworks";
|
|
outputFileListPaths = (
|
|
"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
shellPath = /bin/sh;
|
|
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNTesterUnitTests/Pods-RNTesterUnitTests-frameworks.sh\"\n";
|
|
showEnvVarsInLog = 0;
|
|
};
|
|
/* End PBXShellScriptBuildPhase section */
|
|
|
|
/* Begin PBXSourcesBuildPhase section */
|
|
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
E62F11842A5C6584000BF1C8 /* UpdatePropertiesExampleView.mm in Sources */,
|
|
E62F11832A5C6580000BF1C8 /* FlexibleSizeExampleView.mm in Sources */,
|
|
832F45BB2A8A6E1F0097B4E6 /* SwiftTest.swift in Sources */,
|
|
5C60EB1C226440DB0018C04F /* AppDelegate.mm in Sources */,
|
|
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB209B22B2BA84005AC45F /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
A975CA6C2C05EADF0043F72A /* RCTNetworkTaskTests.m in Sources */,
|
|
E7DB20DF22B2BAA6005AC45F /* RCTImageLoaderTests.m in Sources */,
|
|
E7DB20D222B2BAA6005AC45F /* RCTModuleInitNotificationRaceTests.m in Sources */,
|
|
E7DB20D522B2BAA6005AC45F /* RCTPerformanceLoggerTests.m in Sources */,
|
|
E7DB20D922B2BAA6005AC45F /* RCTAnimationUtilsTests.m in Sources */,
|
|
E7DB20D122B2BAA6005AC45F /* RCTBundleURLProviderTests.m in Sources */,
|
|
E7DB20EC22B2BAA6005AC45F /* RCTMultipartStreamReaderTests.m in Sources */,
|
|
E7DB20E022B2BAA6005AC45F /* RCTMethodArgumentTests.m in Sources */,
|
|
E7DB20E822B2BAA6005AC45F /* RCTModuleMethodTests.mm in Sources */,
|
|
E7DB20E222B2BAA6005AC45F /* RCTGzipTests.m in Sources */,
|
|
E7DB20ED22B2BAA6005AC45F /* RCTURLUtilsTests.m in Sources */,
|
|
E7DB20EE22B2BAA6005AC45F /* RCTViewTests.m in Sources */,
|
|
E7DB20D322B2BAA6005AC45F /* RCTBlobManagerTests.m in Sources */,
|
|
E7DB20DC22B2BAA6005AC45F /* RCTUIManagerTests.m in Sources */,
|
|
E7DB20E322B2BAA6005AC45F /* RCTAllocationTests.m in Sources */,
|
|
383889DA23A7398900D06C3E /* RCTConvert_UIColorTests.m in Sources */,
|
|
E7DB20E622B2BAA6005AC45F /* RCTImageLoaderHelpers.m in Sources */,
|
|
E7DB20D622B2BAA6005AC45F /* RCTFontTests.m in Sources */,
|
|
E7DB20DB22B2BAA6005AC45F /* RCTNativeAnimatedNodesManagerTests.m in Sources */,
|
|
E7DB20E722B2BAA6005AC45F /* RCTConvert_NSURLTests.m in Sources */,
|
|
E7DB20DD22B2BAA6005AC45F /* RCTEventDispatcherTests.m in Sources */,
|
|
E7DB20E122B2BAA6005AC45F /* RCTShadowViewTests.m in Sources */,
|
|
E7DB20EA22B2BAA6005AC45F /* RCTImageUtilTests.m in Sources */,
|
|
E7DB20D722B2BAA6005AC45F /* RCTModuleInitTests.m in Sources */,
|
|
E7DB20E522B2BAA6005AC45F /* RCTDevMenuTests.m in Sources */,
|
|
E7DB20DE22B2BAA6005AC45F /* RCTUnicodeDecodeTests.m in Sources */,
|
|
CD10C7A5290BD4EB0033E1ED /* RCTEventEmitterTests.m in Sources */,
|
|
E7DB20E422B2BAA6005AC45F /* RCTFormatErrorTests.m in Sources */,
|
|
E7DB20EB22B2BAA6005AC45F /* RCTConvert_YGValueTests.m in Sources */,
|
|
E7DB20E922B2BAA6005AC45F /* RCTComponentPropsTests.m in Sources */,
|
|
E7DB20D822B2BAA6005AC45F /* RCTJSONTests.m in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
E7DB214F22B2F332005AC45F /* Sources */ = {
|
|
isa = PBXSourcesBuildPhase;
|
|
buildActionMask = 2147483647;
|
|
files = (
|
|
E7DB216222B2F3EC005AC45F /* RNTesterTestModule.m in Sources */,
|
|
E7C1241A22BEC44B00DA25C0 /* RNTesterIntegrationTests.m in Sources */,
|
|
E7DB216322B2F3EC005AC45F /* RCTLoggingTests.m in Sources */,
|
|
E7DB216422B2F3EC005AC45F /* RCTUIManagerScenarioTests.m in Sources */,
|
|
);
|
|
runOnlyForDeploymentPostprocessing = 0;
|
|
};
|
|
/* End PBXSourcesBuildPhase section */
|
|
|
|
/* Begin PBXTargetDependency section */
|
|
ADA4EF582546F3F8000B7E75 /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 13B07F861A680F5B00A75B9A /* RNTester */;
|
|
targetProxy = ADA4EF572546F3F8000B7E75 /* PBXContainerItemProxy */;
|
|
};
|
|
E7DB215922B2F332005AC45F /* PBXTargetDependency */ = {
|
|
isa = PBXTargetDependency;
|
|
target = 13B07F861A680F5B00A75B9A /* RNTester */;
|
|
targetProxy = E7DB215822B2F332005AC45F /* PBXContainerItemProxy */;
|
|
};
|
|
/* End PBXTargetDependency section */
|
|
|
|
/* Begin XCBuildConfiguration section */
|
|
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = CA59C9994B1822826D8983F0 /* Pods-RNTester.debug.xcconfig */;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
DEVELOPMENT_TEAM = "";
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = "$(SRCROOT)/RNTester/Info.plist";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
/usr/lib/swift,
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
"$(inherited)",
|
|
"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)",
|
|
);
|
|
"LIBRARY_SEARCH_PATHS[arch=*]" = "$(inherited)";
|
|
OTHER_LDFLAGS = (
|
|
"$(inherited)",
|
|
"-ObjC",
|
|
"-framework",
|
|
"\"JavaScriptCore\"",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTester.localDevelopment;
|
|
PRODUCT_NAME = RNTester;
|
|
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Debug;
|
|
};
|
|
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = 51BC9297B6C3163C14532020 /* Pods-RNTester.release.xcconfig */;
|
|
buildSettings = {
|
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
CLANG_ENABLE_MODULES = YES;
|
|
DEVELOPMENT_TEAM = "";
|
|
EXCLUDED_ARCHS = "";
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = "$(SRCROOT)/RNTester/Info.plist";
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
/usr/lib/swift,
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
"$(inherited)",
|
|
"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)",
|
|
);
|
|
OTHER_LDFLAGS = (
|
|
"$(inherited)",
|
|
"-ObjC",
|
|
"-framework",
|
|
"\"JavaScriptCore\"",
|
|
);
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTester.localDevelopment;
|
|
PRODUCT_NAME = RNTester;
|
|
SWIFT_VERSION = 5.0;
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Release;
|
|
};
|
|
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_ASSIGN_ENUM = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
COPY_PHASE_STRIP = NO;
|
|
ENABLE_BITCODE = NO;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
ENABLE_TESTABILITY = YES;
|
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
GCC_DYNAMIC_NO_PIC = NO;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_OPTIMIZATION_LEVEL = 0;
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"DEBUG=1",
|
|
"$(inherited)",
|
|
);
|
|
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
|
|
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
|
|
GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES;
|
|
GCC_WARN_SHADOW = YES;
|
|
GCC_WARN_STRICT_SELECTOR_MATCH = YES;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNKNOWN_PRAGMAS = YES;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_LABEL = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
|
|
);
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
MTL_ENABLE_DEBUG_INFO = YES;
|
|
ONLY_ACTIVE_ARCH = YES;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_CPLUSPLUSFLAGS = (
|
|
"$(OTHER_CFLAGS)",
|
|
"-DFOLLY_NO_CONFIG",
|
|
"-DFOLLY_MOBILE=1",
|
|
"-DFOLLY_USE_LIBCPP=1",
|
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
);
|
|
OTHER_LDFLAGS = (
|
|
"-ObjC",
|
|
"-lc++",
|
|
);
|
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../react-native";
|
|
SDKROOT = iphoneos;
|
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
USE_HERMES = true;
|
|
WARNING_CFLAGS = (
|
|
"-Wextra",
|
|
"-Wall",
|
|
"-Wno-semicolon-before-method-body",
|
|
);
|
|
};
|
|
name = Debug;
|
|
};
|
|
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
buildSettings = {
|
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
CLANG_CXX_LIBRARY = "libc++";
|
|
CLANG_ENABLE_MODULES = YES;
|
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
CLANG_WARN_ASSIGN_ENUM = YES;
|
|
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
CLANG_WARN_COMMA = YES;
|
|
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
CLANG_WARN_EMPTY_BODY = YES;
|
|
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
CLANG_WARN_INT_CONVERSION = YES;
|
|
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_ATOMIC_PROPERTIES = YES;
|
|
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
COPY_PHASE_STRIP = YES;
|
|
ENABLE_BITCODE = NO;
|
|
ENABLE_NS_ASSERTIONS = NO;
|
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
GCC_NO_COMMON_BLOCKS = YES;
|
|
GCC_TREAT_INCOMPATIBLE_POINTER_TYPE_WARNINGS_AS_ERRORS = YES;
|
|
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
|
|
GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
|
|
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
GCC_WARN_INITIALIZER_NOT_FULLY_BRACKETED = YES;
|
|
GCC_WARN_MULTIPLE_DEFINITION_TYPES_FOR_SELECTOR = YES;
|
|
GCC_WARN_SHADOW = YES;
|
|
GCC_WARN_STRICT_SELECTOR_MATCH = YES;
|
|
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
GCC_WARN_UNKNOWN_PRAGMAS = YES;
|
|
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
GCC_WARN_UNUSED_LABEL = YES;
|
|
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
HEADER_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-NativeModulesApple/React_NativeModulesApple.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers",
|
|
"${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers",
|
|
);
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
MTL_ENABLE_DEBUG_INFO = NO;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_CPLUSPLUSFLAGS = (
|
|
"$(OTHER_CFLAGS)",
|
|
"-DFOLLY_NO_CONFIG",
|
|
"-DFOLLY_MOBILE=1",
|
|
"-DFOLLY_USE_LIBCPP=1",
|
|
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
);
|
|
OTHER_LDFLAGS = (
|
|
"-ObjC",
|
|
"-lc++",
|
|
);
|
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../react-native";
|
|
SDKROOT = iphoneos;
|
|
USE_HERMES = true;
|
|
VALIDATE_PRODUCT = YES;
|
|
WARNING_CFLAGS = (
|
|
"-Wextra",
|
|
"-Wall",
|
|
"-Wno-semicolon-before-method-body",
|
|
);
|
|
};
|
|
name = Release;
|
|
};
|
|
E7DB20A722B2BA84005AC45F /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = D134EB89DD98253FCF879A47 /* Pods-RNTesterUnitTests.debug.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
DEVELOPMENT_TEAM = "";
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = RNTesterUnitTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"$(SDKROOT)/usr/lib/swift",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/RNTesterUnitTests",
|
|
);
|
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
MTL_FAST_MATH = YES;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_SWIFT_FLAGS = "$(inherited)";
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTesterUnitTests;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Debug;
|
|
};
|
|
E7DB20A822B2BA84005AC45F /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = 3FF60722627F93D8F62FA1E3 /* Pods-RNTesterUnitTests.release.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
COPY_PHASE_STRIP = NO;
|
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
DEVELOPMENT_TEAM = "";
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = RNTesterUnitTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
LIBRARY_SEARCH_PATHS = (
|
|
"$(SDKROOT)/usr/lib/swift",
|
|
"$(inherited)",
|
|
"$(PROJECT_DIR)/RNTesterUnitTests",
|
|
);
|
|
MTL_FAST_MATH = YES;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_SWIFT_FLAGS = "$(inherited)";
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTesterUnitTests;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
};
|
|
name = Release;
|
|
};
|
|
E7DB215B22B2F332005AC45F /* Debug */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = 20B55D3C33B683598D2A4424 /* Pods-RNTesterIntegrationTests.debug.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
DEVELOPMENT_TEAM = "";
|
|
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
"FB_REFERENCE_IMAGE_DIR=\"\\\"$(SOURCE_ROOT)/RNTesterIntegrationTests/ReferenceImages\\\"\"",
|
|
"$(inherited)",
|
|
);
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = RNTesterIntegrationTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
MTL_FAST_MATH = YES;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_SWIFT_FLAGS = "$(inherited)";
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTesterIntegrationTests;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNTester.app/RNTester";
|
|
};
|
|
name = Debug;
|
|
};
|
|
E7DB215C22B2F332005AC45F /* Release */ = {
|
|
isa = XCBuildConfiguration;
|
|
baseConfigurationReference = B0E70A8A05E03E868F8703FE /* Pods-RNTesterIntegrationTests.release.xcconfig */;
|
|
buildSettings = {
|
|
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
CLANG_ANALYZER_NONNULL = YES;
|
|
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
CODE_SIGN_IDENTITY = "iPhone Developer";
|
|
COPY_PHASE_STRIP = NO;
|
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
DEVELOPMENT_TEAM = "";
|
|
HEADER_SEARCH_PATHS = (
|
|
"${PODS_ROOT}/Headers/Private/Yoga",
|
|
"$(inherited)",
|
|
);
|
|
INFOPLIST_FILE = RNTesterIntegrationTests/Info.plist;
|
|
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
"$(inherited)",
|
|
"@executable_path/Frameworks",
|
|
"@loader_path/Frameworks",
|
|
);
|
|
MTL_FAST_MATH = YES;
|
|
OTHER_CFLAGS = "$(inherited)";
|
|
OTHER_SWIFT_FLAGS = "$(inherited)";
|
|
PRODUCT_BUNDLE_IDENTIFIER = com.meta.RNTesterIntegrationTests;
|
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
TARGETED_DEVICE_FAMILY = "1,2";
|
|
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNTester.app/RNTester";
|
|
};
|
|
name = Release;
|
|
};
|
|
/* End XCBuildConfiguration section */
|
|
|
|
/* Begin XCConfigurationList section */
|
|
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNTester" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
13B07F941A680F5B00A75B9A /* Debug */,
|
|
13B07F951A680F5B00A75B9A /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNTesterPods" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
83CBBA211A601CBA00E9B192 /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
E7DB20A622B2BA84005AC45F /* Build configuration list for PBXNativeTarget "RNTesterUnitTests" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
E7DB20A722B2BA84005AC45F /* Debug */,
|
|
E7DB20A822B2BA84005AC45F /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
E7DB215A22B2F332005AC45F /* Build configuration list for PBXNativeTarget "RNTesterIntegrationTests" */ = {
|
|
isa = XCConfigurationList;
|
|
buildConfigurations = (
|
|
E7DB215B22B2F332005AC45F /* Debug */,
|
|
E7DB215C22B2F332005AC45F /* Release */,
|
|
);
|
|
defaultConfigurationIsVisible = 0;
|
|
defaultConfigurationName = Release;
|
|
};
|
|
/* End XCConfigurationList section */
|
|
};
|
|
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
}
|