Skip to content

Commit

Permalink
fix: iOS example app flipper-folly problems (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
edeckers authored Feb 16, 2021
1 parent ac71917 commit f438e45
Show file tree
Hide file tree
Showing 3 changed files with 285 additions and 245 deletions.
19 changes: 19 additions & 0 deletions example/ios/BlobCourierExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
B861D23B60E39C8A7EE2C5CE /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -256,6 +257,24 @@
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
};
B861D23B60E39C8A7EE2C5CE /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-BlobCourierExample/Pods-BlobCourierExample-resources.sh",
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-BlobCourierExample/Pods-BlobCourierExample-resources.sh\"\n";
showEnvVarsInLog = 0;
};
CCCC07BCAFDEF1FCADC0D0C9 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ target 'BlobCourierExample' do

use_react_native!(:path => config["reactNativePath"])

# pod 'react-native-blob-courier', :path => '../..'
pod 'react-native-blob-courier', :path => '../..'

use_native_modules!

# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable these next few lines.
use_flipper!
use_flipper!({ 'Flipper-Folly' => '2.3.0' })
post_install do |installer|
flipper_post_install(installer)
end
Expand Down
Loading

0 comments on commit f438e45

Please sign in to comment.