해당 프로젝트에서 cocoapods 삭제 방법

2016. 3. 18. 11:09Programming/Swift

반응형

http://stackoverflow.com/questions/16427421/how-to-remove-cocoapods-from-a-project

  1. Delete the standalone files (Podfile Podfile.lock and your Pods directory)
  2. Delete the generated xcworkspace
  3. Open your xcodeproj file, delete the references to Pods.xcconfig and libPods.a (in the Frameworks group)
  4. Under your Build Phases delete the Copy Pods ResourcesEmbed Pods Frameworks andCheck Pods Manifest.lock phases.
  5. This may seem obvious but you'll need to integrate the 3rd party libraries some other way or remove references to them from your code.



1.해당 프로젝트 폴더에 가서 Podfile, Podfile.lock, Pods폴더를 삭제하라.

2.cocoapods 설치시 자동 생성되었던 xcworkspace 확장자 파일도 지워라.

3.해당 프로젝트를 열고, Pods.xcconfig와 libPods.a 를 삭제하여라(libPods.a는 Frameworks 그룹안에 있다)

4.Project->Target->프로젝트명에 가면 Build Phases 가 있다. 거기 아래에 Copy Pods Resources, Embed Pods Framworks, Check Pods Manifest.lock 를 지워라.

5.위 삭제방법이 정확하지 않을 수 있다. 이것말고 다른 라이브러리 라던가 있을 수 있따(?)


요정도로 보면 될 것같은데..나는 이렇게 하니깐 됨.

반응형

'Programming > Swift' 카테고리의 다른 글

process launch failed: failed to get the task for process [1383]  (0) 2016.05.24
will be removed in Swift 3  (0) 2016.03.22
SQLite 쿼리 실행  (0) 2016.03.16
application 이름 변경  (0) 2016.03.16
iOS 동영상 강좌  (0) 2016.02.24