Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to solve this Error in XCode Multiple commands produce React-Core-60309c9c-RCTI18nStrings | React-Core-RCTI18nStrings? #1665

Closed
1 task done
lchentanaone opened this issue Mar 18, 2024 · 3 comments

Comments

@lchentanaone
Copy link

lchentanaone commented Mar 18, 2024

Error

Showing Recent Messages
Multiple commands produce '/Users/********/Library/Developer/Xcode/DerivedData/ryorimobilev2-bimmpniobmadxrfontyocvohycrj/Build/Intermediates.noindex/
ArchiveIntermediates/ryorimobilev2/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/RCTI18nStrings.bundle'

Showing Recent Messages
Target 'React-Core-60309c9c-RCTI18nStrings' (project 'Pods') has create directory command with output
'/Users/********/Library/Developer/Xcode/DerivedData/ryorimobilev2-bimmpniobmadxrfontyocvohycrj/Build/Intermediates.noindex/
ArchiveIntermediates/ryorimobilev2/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/RCTI18nStrings.bundle'

Showing Recent Messages
Target 'React-Core-RCTI18nStrings' (project 'Pods') has create directory command with output
'/Users/********/Library/Developer/Xcode/DerivedData/ryorimobilev2-bimmpniobmadxrfontyocvohycrj/Build/Intermediates.noindex/
ArchiveIntermediates/ryorimobilev2/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/RCTI18nStrings.bundle'

Code of Conduct

  • I agree to follow this project's Code of Conduct
@lchentanaone lchentanaone changed the title [question]: How to solve this Error in XCode Multiple commands produce React-Core-60309c9c-RCTI18nStrings | React-Core-RCTI18nStrings How to solve this Error in XCode Multiple commands produce React-Core-60309c9c-RCTI18nStrings | React-Core-RCTI18nStrings? Mar 18, 2024
@jennantilla
Copy link
Contributor

Hi @lchentanaone thanks for reaching out! Can you share more about the steps to reproduce this issue?

Do you get the same errors when you remove OneSignal from your project? I don't see mention of OneSignal in the errors above; it looks like this could be a pod issue?

You can try:

$ pod deintegrate
$ pod install

Let us know if you are still having this problem only when you try to add the OneSignal SDK to your project.

Thanks!

@vuongtran99dn
Copy link

first, you need remove pod folder
then add this to Podfile

`post_install do |installer|

 ################### ADD THE FOLLOWING #########################
 installer.pods_project.targets.each do |target|
  if target.name == "React-Core-RCTI18nStrings"
    target.remove_from_project
  end
end
###############################################################

# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
react_native_post_install(
  installer,
  config[:reactNativePath],
  :mac_catalyst_enabled => false
)

end`

pod install again and Target React-Core-RCTI18nStrings will be remove from your project.

check result in xcode > pod > target

Screenshot 2024-05-07 at 12 52 28

My english is so bad... hope u understand

@NgocLe1001
Copy link

CleanShot 2024-05-08 at 21 34 50@2x
Xcode => Pods => Target => Find it and remove works for me

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants