레이블이 ios인 게시물을 표시합니다. 모든 게시물 표시
레이블이 ios인 게시물을 표시합니다. 모든 게시물 표시

2017년 1월 5일 목요일

pod install 시 abort 문제

iOS에서 Firebase를 세팅하는 중에 문제가 생겼습니다.
정확한 로그가 뜨지는 않았으나

➜  proj.ios_mac pod install
Analyzing dependencies
Downloading dependencies
Installing Firebase (3.8.0)
Installing FirebaseAnalytics (3.5.1)
Installing FirebaseCore (3.4.4)
Installing FirebaseInstanceID (1.0.8)
Installing GoogleInterchangeUtilities (1.2.2)
Installing GoogleSymbolUtilities (1.1.2)
Installing GoogleToolboxForMac (2.1.0)
Generating Pods project
[1]    18783 abort      pod install

이런식으로 마지막에 설치가 완료되는것이 아닌 abort가 일어납니다.

찾아봤더니,
http://stackoverflow.com/questions/40581749/xcode8-1-cocoapods-abort-trap6
trap 6 abort는 아니지만
cocoapods 을 재설치하랍니다.

아마 예상되는 원인은 Xcode 8.1버전이라서 버전이 안맞아서 그런 것 같습니다.

$gem uninstall cocoapods
$gem install cocoapods --pre

이렇게 진행했더니 성공했습니다.
아마 개발진행중인데 정식버전으로는 아직 올라오지 않은 것 같네요.

어쨌든 해결했습니다!

2016년 11월 22일 화요일

Cocos2d-x 에 iOS 배너광고 삽입시 "_OBJC_CLASS_$_GCController", referenced from: ... 에러

정확한 에러는
Undefined symbols for architecture x86_64:
  "_GCControllerDidConnectNotification", referenced from:
      -[GCControllerConnectionEventHandler observerConnection:disconnection:] in libcocos2d iOS.a(CCController-iOS.o)
  "_GCControllerDidDisconnectNotification", referenced from:
      -[GCControllerConnectionEventHandler observerConnection:disconnection:] in libcocos2d iOS.a(CCController-iOS.o)
  "_OBJC_CLASS_$_GCController", referenced from:
      objc-class-ref in libcocos2d iOS.a(CCController-iOS.o)
     (maybe you meant: _OBJC_CLASS_$_GCControllerConnectionEventHandler)
ld: symbol(s) not found for architecture x86_64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

Build Phases > Link Binary With Libraries 에 
MediaPlayer.framework
GameController.framework 를 추가해주면 해결됨


LaunchImage Size table


just add on portrait.
i hope this help

JIRA Plugin - ScriptRunner 소개 #2

관련 글 소개 #1:  https://pineoc.blogspot.com/2019/03/scriptrunner-1.html ScriptRunner 소개 #2 지난 글에서는 Behaviours를 보았고 다음 내용인 콘솔, 리스너 등을 ...