I'm trying to link against libz.dylib.
Podfile:
s.library = 'libz'
During linting:
- ERROR | [iOS] [libraries] Libraries should omit the `lib` prefix (`libz`)
libz.dylib will trigger another error.
As the error message stated, remove the lib prefix.
spec.library = 'z'
@kylef
is work for me, thanks
Most helpful comment
As the error message stated, remove the
libprefix.