Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode 7 warnings with Google Signin lib when building project

I got this issue warnings on Xcode 7 (Could not resolve external type ...) . I Google it and did all found solutions but did not solve the issue.

The Google SignIn lib was added via Pods (pod 'Google/SignIn').

See following image link for detail warnings info.

Warnings on Xcode 7 with Google SignIn lib

like image 940
Vu Tran Avatar asked Oct 09 '15 03:10

Vu Tran


1 Answers

I've also run into this issue since updating to GoogleSignIn 3.3.0+ on Xcode 7 and 7.0.1.

The only usefull solution I've found so far, which didn't end up helping me was to use these settings from here It may work for you.

 - Precompile Prefix (GCC_PRECOMPILE_PREFIX_HEADER) = NO Debug
 - Information Format (DEBUG_INFORMATION_FORMAT) = DWARF with dSYM
 - Enabled Modules (C and Objective-C) (CLANG_ENABLE_MODULES) = NO
like image 149
blahartinger Avatar answered Oct 13 '22 08:10

blahartinger