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
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == 'Sharaku'
source_files = target.source_build_phase.files
selected = source_files.select do |file|
file.file_ref.name.to_s.include? 'xib'
end
selected.each do |file|
source_files.delete file
puts "Deleting source file #{file.inspect} from target #{target.inspect}."
end
end
end
end
The text was updated successfully, but these errors were encountered:
rizumita
changed the title
CocoaPodsで
CocoaPodsでインストールするとビルでに失敗する
Dec 6, 2019
rizumita
changed the title
CocoaPodsでインストールするとビルでに失敗する
CocoaPodsでインストールするとビルドに失敗する
Dec 6, 2019
おそらくpodspecファイルで
と指定しているためxibファイルがコンパイル対象として認識されていて、xibをコンパイルしようとしてエラーになります。
手元のプロジェクトでは以下のように回避していますが、podspecの修正をしていただけるとありがたいです。
The text was updated successfully, but these errors were encountered: