Xcode error when using "BonMot" pod and "Swiftilities" in one project
kirill-ushkov opened this issue · 3 comments
kirill-ushkov commented
When using pod "BonMot" and "Swifitilities" in same project, getting error "Ambiguous use of 'tintedImage(color:)'". This is occurring when trying to update to version 0.0.13.
ZevEisenberg commented
Yup. This is annoying, and I don't know of any way to resolve it in Swift. The best way forward would be to change the name of the method in Swiftilities, since it's easier to make breaking changes here than in BonMot.
chrisballinger commented
I think this is the underlying Swift issue: https://bugs.swift.org/browse/SR-3908
chrisballinger commented
FWIW this is how Alamofire solved a similar issue, by prefixing their public extensions: Alamofire/Alamofire#2758