After adding FLCharts as a pod dependency to an iOS project, building the project will produce this error. This is because the podspec has the following line:
s.resources = 'Sources/FLCharts/Assets/*'
Translation.swift is inside the Assets directory, causing this problem. Either the podspec needs to be updated or Translation.swift needs to be moved to a different directory, since it is not a bundle resource.
After adding FLCharts as a pod dependency to an iOS project, building the project will produce this error. This is because the podspec has the following line:
Translation.swift is inside the Assets directory, causing this problem. Either the podspec needs to be updated or Translation.swift needs to be moved to a different directory, since it is not a bundle resource.