You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After pod install all the settings for FRAMEWORK_SEARCH_PATCHS are empty and need to set up again.
It's a good idea to utilize the PodFile to handle this setup instead of setup manually.
post_install do |installer|
# ...
installer.pods_project.targets.each do |target|
if target.name == 'R5VideoView'
target.build_configurations.each do |config|
config.build_settings['FRAMEWORK_SEARCH_PATHS'] = '$(SRCROOT)/../Frameworks'
end
end
end
end
The text was updated successfully, but these errors were encountered:
After
pod install
all the settings for FRAMEWORK_SEARCH_PATCHS are empty and need to set up again.It's a good idea to utilize the
PodFile
to handle this setup instead of setup manually.The text was updated successfully, but these errors were encountered: