Skip to content

Commit a6f20fd

Browse files
committed
added reanimated in pods
1 parent 4418754 commit a6f20fd

File tree

2 files changed

+48
-5
lines changed

2 files changed

+48
-5
lines changed

react-native-in-app-payments-quickstart/ios/Podfile.lock

+25
Original file line numberDiff line numberDiff line change
@@ -1185,6 +1185,27 @@ PODS:
11851185
- ReactCommon/turbomodule/bridging
11861186
- ReactCommon/turbomodule/core
11871187
- Yoga
1188+
- RNReanimated (3.11.0):
1189+
- DoubleConversion
1190+
- glog
1191+
- hermes-engine
1192+
- RCT-Folly (= 2024.01.01.00)
1193+
- RCTRequired
1194+
- RCTTypeSafety
1195+
- React-Codegen
1196+
- React-Core
1197+
- React-debug
1198+
- React-Fabric
1199+
- React-featureflags
1200+
- React-graphics
1201+
- React-ImageManager
1202+
- React-NativeModulesApple
1203+
- React-RCTFabric
1204+
- React-rendererdebug
1205+
- React-utils
1206+
- ReactCommon/turbomodule/bridging
1207+
- ReactCommon/turbomodule/core
1208+
- Yoga
11881209
- RNSquareInAppPayments (1.6.3):
11891210
- React
11901211
- SquareBuyerVerificationSDK (= 1.6.3)
@@ -1251,6 +1272,7 @@ DEPENDENCIES:
12511272
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
12521273
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
12531274
- RNGestureHandler (from `../node_modules/react-native-gesture-handler`)
1275+
- RNReanimated (from `../node_modules/react-native-reanimated`)
12541276
- RNSquareInAppPayments (from `../node_modules/react-native-square-in-app-payments`)
12551277
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
12561278

@@ -1370,6 +1392,8 @@ EXTERNAL SOURCES:
13701392
:path: "../node_modules/react-native/ReactCommon"
13711393
RNGestureHandler:
13721394
:path: "../node_modules/react-native-gesture-handler"
1395+
RNReanimated:
1396+
:path: "../node_modules/react-native-reanimated"
13731397
RNSquareInAppPayments:
13741398
:path: "../node_modules/react-native-square-in-app-payments"
13751399
Yoga:
@@ -1430,6 +1454,7 @@ SPEC CHECKSUMS:
14301454
React-utils: 3285151c9d1e3a28a9586571fc81d521678c196d
14311455
ReactCommon: f42444e384d82ab89184aed5d6f3142748b54768
14321456
RNGestureHandler: 2282cfbcf86c360d29f44ace393203afd5c6cff7
1457+
RNReanimated: 7ad0f08a845cb60955ee5d461d2156d7b9707118
14331458
RNSquareInAppPayments: 69e4c6d6be92bc7f94cca947fc91264dc8f8343b
14341459
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
14351460
SquareBuyerVerificationSDK: d325f473a724cfa5684a837296a307152ca52854

react-native-in-app-payments-quickstart/ios/RNInAppPaymentsQuickstart.xcodeproj/project.pbxproj

+23-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 46;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -261,21 +261,29 @@
261261
};
262262
4574BDB937B7D93FB3DBACE8 /* [CP] Embed Pods Frameworks */ = {
263263
isa = PBXShellScriptBuildPhase;
264-
buildActionMask = 2147483647;
264+
buildActionMask = 8;
265265
files = (
266266
);
267267
inputPaths = (
268+
"${PODS_ROOT}/Target Support Files/Pods-RNInAppPaymentsQuickstart/Pods-RNInAppPaymentsQuickstart-frameworks.sh",
269+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/SquareBuyerVerificationSDK/SquareBuyerVerificationSDK.framework/SquareBuyerVerificationSDK",
270+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/SquareInAppPaymentsSDK/SquareInAppPaymentsSDK.framework/SquareInAppPaymentsSDK",
271+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
268272
);
269273
name = "[CP] Embed Pods Frameworks";
270274
outputPaths = (
275+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SquareBuyerVerificationSDK.framework",
276+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SquareInAppPaymentsSDK.framework",
277+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
271278
);
272-
runOnlyForDeploymentPostprocessing = 0;
279+
runOnlyForDeploymentPostprocessing = 1;
273280
shellPath = /bin/sh;
274281
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNInAppPaymentsQuickstart/Pods-RNInAppPaymentsQuickstart-frameworks.sh\"\n";
275282
showEnvVarsInLog = 0;
276283
};
277284
54553DFF54BD7138AACCB48D /* [CP] Copy Pods Resources */ = {
278285
isa = PBXShellScriptBuildPhase;
286+
alwaysOutOfDate = 1;
279287
buildActionMask = 2147483647;
280288
files = (
281289
);
@@ -349,7 +357,14 @@
349357
DEVELOPMENT_TEAM = "";
350358
INFOPLIST_FILE = RNInAppPaymentsQuickstart/Info.plist;
351359
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
352-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
360+
LD_RUNPATH_SEARCH_PATHS = (
361+
"$(inherited)",
362+
"@executable_path/Frameworks",
363+
);
364+
LIBRARY_SEARCH_PATHS = (
365+
"$(SDKROOT)/usr/lib/swift",
366+
"$(inherited)",
367+
);
353368
OTHER_LDFLAGS = (
354369
"$(inherited)",
355370
"-ObjC",
@@ -375,7 +390,10 @@
375390
);
376391
INFOPLIST_FILE = RNInAppPaymentsQuickstart/Info.plist;
377392
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
378-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
393+
LD_RUNPATH_SEARCH_PATHS = (
394+
"$(inherited)",
395+
"@executable_path/Frameworks",
396+
);
379397
LIBRARY_SEARCH_PATHS = (
380398
"$(SDKROOT)/usr/lib/swift",
381399
"$(inherited)",

0 commit comments

Comments
 (0)