Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/templates/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
NativeScript“;未找到带有角度包含的文件;使用';报价';取而代之的是;_Nativescript - Fatal编程技术网

NativeScript“;未找到带有角度包含的文件;使用';报价';取而代之的是;

NativeScript“;未找到带有角度包含的文件;使用';报价';取而代之的是;,nativescript,Nativescript,我正试图将CocoaPod添加到NativeScript应用程序中,但生成失败,因为未找到'DDLog.h'文件,文件依次引用DDLog.h(来自CocoaLumberjack)和DTCoreText.h(来自DTCoreText) 所有这些库都是由VKVideoPlayer播放机吊舱引入的 下面是命令行中的相关错误 /Users/burkeholland/dev/burkeholland/nativescript-video-player/demo/platforms/ios/Pods/VKF

我正试图将CocoaPod添加到NativeScript应用程序中,但生成失败,因为未找到
'DDLog.h'文件,文件依次引用
DDLog.h
(来自CocoaLumberjack)和
DTCoreText.h
(来自DTCoreText)

所有这些库都是由VKVideoPlayer播放机吊舱引入的

下面是命令行中的相关错误

/Users/burkeholland/dev/burkeholland/nativescript-video-player/demo/platforms/ios/Pods/VKFoundation/Classes/ios/VKFoundation.h:6:9: error: 
      'DDLog.h' file not found with <angled> include; use "quotes" instead
#import <DDLog.h>
        ^~~~~~~~~
        "DDLog.h"
/Users/burkeholland/dev/burkeholland/nativescript-video-player/demo/platforms/ios/Pods/VKFoundation/Classes/ios/VKFoundation.h:7:9: error: 
      'DTCoreText.h' file not found with <angled> include; use "quotes" instead
#import <DTCoreText.h>
        ^~~~~~~~~~~~~~
        "DTCoreText.h"
2 errors generated.
/Users/burkeholland/dev/burkeholland/nativescript视频播放器/demo/platforms/ios/Pods/VKFoundation/Classes/ios/VKFoundation.h:6:9:错误:

未找到带有的“DDLog.h”文件。

错误本身表明引用的头(DDLog.h)中有一个是用
引用的。这种方法解决了问题,但会产生一个单独的错误,包括
包含框架模块内的非模块头“Reachability.Reachability”
。这似乎可以通过在Podfile中设置
['CLANG\u ALLOW\u NON\u MODULAR\u INCLUDES\u IN\u FRAMEWORK\u MODULES']='YES'
来解决,但这会返回包含错误的
文件。有点疯狂。我已经用最新的pod文件更新了Github项目。