Skip to content

Commit c8de77d

Browse files
danilobuergerSaadnajmi
authored andcommitted
Re-apply: Consider relative to pwd installation root when looking for files in rn module via cocoapods (facebook#33427)
Summary: This re-applies Consider relative to pwd installation root when looking for files in rn module via cocoapods by danilobuerger The `:reactNativePath` provided by `use_native_modules!` is the rn module path relative to the installation root (usually `./ios`). However, when executing cocoapods from a dir thats not the installation root, packages that use the relative `:reactNativePath` variable in their path must also consider the relative to pwd installation root. This fixes usage of cocoapods with the `--project-directory` flag like ```bash bundle exec pod install --project-directory=ios ``` ## Changelog [iOS] [Fixed] - Fix usage of cocoapods with --project-directory flag and new arch Pull Request resolved: facebook#33427 Test Plan: 1) Enable the new arch 2) Execute from the projects root dir ```bash bundle exec pod install --project-directory=ios ``` 3) It will fail with ``` [!] Invalid `Podfile` file: [codegen] Couldn't not find react-native-codegen.. ``` 4) Apply the patch 5) Execute from the projects root dir ```bash bundle exec pod install --project-directory=ios ``` 6) It will succeed Reviewed By: cortinico Differential Revision: D34890926 Pulled By: dmitryrykun fbshipit-source-id: f7adc6196874822d5ff38f275414f529d385f2ea
1 parent c8ba2e5 commit c8de77d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

scripts/react_native_pods.rb

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,9 @@ def modify_flags_for_new_architecture(installer, cpp_flags)
281281
end
282282

283283
def build_codegen!(react_native_path)
284-
codegen_repo_path = "#{react_native_path}/packages/react-native-codegen";
285-
codegen_npm_path = "#{react_native_path}/../react-native-codegen";
284+
relative_installation_root = Pod::Config.instance.installation_root.relative_path_from(Pathname.pwd)
285+
codegen_repo_path = "#{relative_installation_root}/#{react_native_path}/packages/react-native-codegen";
286+
codegen_npm_path = "#{relative_installation_root}/#{react_native_path}/../react-native-codegen";
286287
codegen_cli_path = ""
287288
if Dir.exist?(codegen_repo_path)
288289
codegen_cli_path = codegen_repo_path
@@ -323,7 +324,7 @@ def checkAndGenerateEmptyThirdPartyProvider!(react_native_path)
323324
Pod::Executable.execute_command(
324325
'node',
325326
[
326-
"#{react_native_path}/scripts/generate-provider-cli.js",
327+
"#{relative_installation_root}/#{react_native_path}/scripts/generate-provider-cli.js",
327328
"--platform", 'ios',
328329
"--schemaListPath", temp_schema_list_path,
329330
"--outputDir", "#{output_dir}"
@@ -514,6 +515,7 @@ def use_react_native_codegen_discovery!(options={})
514515
app_path = options[:app_path]
515516
fabric_enabled = options[:fabric_enabled] ||= false
516517
config_file_dir = options[:config_file_dir] ||= ''
518+
relative_installation_root = Pod::Config.instance.installation_root.relative_path_from(Pathname.pwd)
517519

518520
if !app_path
519521
Pod::UI.warn '[Codegen] Error: app_path is required for use_react_native_codegen_discovery.'
@@ -529,7 +531,7 @@ def use_react_native_codegen_discovery!(options={})
529531
out = Pod::Executable.execute_command(
530532
'node',
531533
[
532-
"#{react_native_path}/scripts/generate-artifacts.js",
534+
"#{relative_installation_root}/#{react_native_path}/scripts/generate-artifacts.js",
533535
"-p", "#{app_path}",
534536
"-o", Pod::Config.instance.installation_root,
535537
"-e", "#{fabric_enabled}",

template/ios/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ target 'HelloWorld' do
1515
# to enable hermes on iOS, change `false` to `true` and then install pods
1616
:hermes_enabled => flags[:hermes_enabled],
1717
:fabric_enabled => flags[:fabric_enabled],
18-
# An abosolute path to your application root.
19-
:app_path => "#{Dir.pwd}/.."
18+
# An absolute path to your application root.
19+
:app_path => "#{Pod::Config.instance.installation_root}/.."
2020
)
2121

2222
target 'HelloWorldTests' do

0 commit comments

Comments
 (0)