从官网下载的3.6.4版本离线打包SDK,解压之后,inc文件夹内,缺少DCADManager.h ,导致AppDelegate.m内运行报错“'DCADManager.h' file not found”
检查了之前下载的3.4.7版本,inc目录下是有DCADManager.h这个文件
之前3.4.7版本SDK AppDelegate.m文件内,有如下代码片段:
#if defined(ENABLEAD)
#import "DCADManager.h"
#endif
@interface AppDelegate()<PDRCoreDelegate
#if defined(ENABLEAD)
,DCADManagerDelgate
#endif
新的3.6.4版本也没有这段代码了
那么iOS离线sdk从3.4.7升级到3.6.4应该怎么操作