ios - Linking errors when trying to install Google signin -
i trying integrate google sign in ios apps while doing getting below error.
is there solution remove below errors?
undefined symbols architecture armv7: "_inflate", referenced from: l002 in googlesignin(gtmnsdata+zlib.o) "_deflate", referenced from: l001 in googlesignin(gtmnsdata+zlib.o) "_inflateend", referenced from: l002 in googlesignin(gtmnsdata+zlib.o) "deflateinit2", referenced from: l001 in googlesignin(gtmnsdata+zlib.o) "inflateinit2", referenced from: l002 in googlesignin(gtmnsdata+zlib.o) "_deflateend", referenced from: l001 in googlesignin(gtmnsdata+zlib.o) ld: symbol(s) not found architecture armv7 clang: error: linker command failed exit code 1 (use -v see invocation)
you can fallow below steps
go build settings / linking / other linker flags , add "-objc" without quotes. assume using "header
file" map google framework , swift approach.
go build phases >link binary librairies > + > add other, go de /usr/lib directory , select "libz.dylib"
compile
Comments
Post a Comment