An App ID with Identifier '' is not available. Please enter a different string
Xcode의 General 탭, Identity 항목, Bundle Identifier 항목이 이미 사용 중이라는 의미임
이건 전세계적으로 고유한 값이어야 하므로 자신의 reverse domain 이름을 붙이는 게 좋음
ex) net.terzeron.TestApp001
Command /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc failed with exit code 1
일반적인 컴파일러 에러이므로 그 윗줄에 나오는 정확한 원인 메시지를 다시 읽어볼 것
clang: error: linker command failed with exit code 1 (use -v to see invocation)
일반적인 링커 에러이므로 그 윗줄에 나오는 정확한 원인 메시지를 다시 읽어볼 것
ld: '/Users/terzeron/workspace1/iOSAppExamples/edhita/Pods/Google-Mobile-Ads-SDK/GoogleMobileAdsSdkiOS-6.12.0/libGoogleAdMobAds.a(GADClickTrackerCollection+Mediation.o)' does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architecture arm64
Google AdMob 라이브러리 의존성을 제거하거나 ENABLE_BITCODE 설정을 꺼줄 필요가 있음
code의 General 탭, Build Settings 항목, Enable Bitcode를 No로 변경
참조
http://stackoverflow.com/questions/31205133/how-to-enable-bitcode-in-xcode-7