Skip to content

Commit e91915e

Browse files
committed
fix: popspec improvements
1 parent 4b619f5 commit e91915e

3 files changed

Lines changed: 12 additions & 15 deletions

File tree

apps/TesterIntegrated/swift/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
22
- boost (1.84.0)
3-
- Brownie (0.1.0):
3+
- Brownie (0.0.1):
44
- boost
55
- DoubleConversion
66
- fast_float
@@ -2772,7 +2772,7 @@ EXTERNAL SOURCES:
27722772

27732773
SPEC CHECKSUMS:
27742774
boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90
2775-
Brownie: ac51b21f5e34bba2ad62cafcd0c56ceabe6ff866
2775+
Brownie: 1ea85496ea17d9c5dda3a858af605d8524e78293
27762776
DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb
27772777
fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6
27782778
FBLazyVector: 0aa6183b9afe3c31fc65b5d1eeef1f3c19b63bfa
@@ -2848,8 +2848,8 @@ SPEC CHECKSUMS:
28482848
ReactCommon: 804dc80944fa90b86800b43c871742ec005ca424
28492849
RNScreens: ffbb0296608eb3560de641a711bbdb663ed1f6b4
28502850
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
2851-
Yoga: 8e01cef9947ca77f0477a098f0b32848a8e448c6
2851+
Yoga: 689c8e04277f3ad631e60fe2a08e41d411daf8eb
28522852

28532853
PODFILE CHECKSUM: cc9179225629f8397761aa16248efe751042af40
28542854

2855-
COCOAPODS: 1.16.2
2855+
COCOAPODS: 1.15.2

apps/TesterIntegrated/swift/SwiftExample.xcodeproj/project.pbxproj

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,10 @@
171171
inputFileListPaths = (
172172
"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
173173
);
174-
inputPaths = (
175-
);
176174
name = "[CP] Embed Pods Frameworks";
177175
outputFileListPaths = (
178176
"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
179177
);
180-
outputPaths = (
181-
);
182178
runOnlyForDeploymentPostprocessing = 0;
183179
shellPath = /bin/sh;
184180
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-frameworks.sh\"\n";
@@ -250,14 +246,10 @@
250246
inputFileListPaths = (
251247
"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-resources-${CONFIGURATION}-input-files.xcfilelist",
252248
);
253-
inputPaths = (
254-
);
255249
name = "[CP] Copy Pods Resources";
256250
outputFileListPaths = (
257251
"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-resources-${CONFIGURATION}-output-files.xcfilelist",
258252
);
259-
outputPaths = (
260-
);
261253
runOnlyForDeploymentPostprocessing = 0;
262254
shellPath = /bin/sh;
263255
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SwiftExample/Pods-SwiftExample-resources.sh\"\n";
@@ -352,7 +344,10 @@
352344
ONLY_ACTIVE_ARCH = YES;
353345
OTHER_CFLAGS = "$(inherited)";
354346
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
355-
OTHER_LDFLAGS = "$(inherited) ";
347+
OTHER_LDFLAGS = (
348+
"$(inherited)",
349+
" ",
350+
);
356351
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
357352
SDKROOT = iphoneos;
358353
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
@@ -416,7 +411,10 @@
416411
MTL_FAST_MATH = YES;
417412
OTHER_CFLAGS = "$(inherited)";
418413
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
419-
OTHER_LDFLAGS = "$(inherited) ";
414+
OTHER_LDFLAGS = (
415+
"$(inherited)",
416+
" ",
417+
);
420418
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
421419
SDKROOT = iphoneos;
422420
SWIFT_COMPILATION_MODE = wholemodule;

packages/brownie/Brownie.podspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Pod::Spec.new do |spec|
2222

2323
spec.pod_target_xcconfig = {
2424
'DEFINES_MODULE' => 'YES',
25-
'OTHER_SWIFT_FLAGS' => "-enable-experimental-feature AccessLevelOnImport",
2625
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++20',
2726
'HEADER_SEARCH_PATHS' => '$(inherited) "${PODS_ROOT}/boost" "${PODS_ROOT}/RCT-Folly" "${PODS_TARGET_SRCROOT}/cpp"'
2827
}

0 commit comments

Comments
 (0)