Cocoa pods and Watchkit Extesion

后端 未结 8 1308
迷失自我
迷失自我 2021-02-06 00:50

I try to build a WatchKit Extension for my app...

I Updated the pods file to look like this:

platform:ios, \'8.0\'
use_frameworks!
source \'https://githu         


        
8条回答
  •  迷失自我
    2021-02-06 01:04

    The problem is when updating to cocoapods 0.36.x they are now creating Frameworks out of each pod library. See the blog post about it.

    This causes issues with any pod library that is dependent on other pods and how its referencing them in their import statements, or how your code is importing them as well. The Pod process now turns them into frameworks and when they used to be imported as

    #import "ThisOtherPodClass.h"

    Now need to be imported as

    #import

提交回复
热议问题