组件化问题汇总

1.cocoapads添加依赖私有库,提交报错的问题解决

自己的一个私有库添加了另一个私有库,进行验证时报如下错误:找不到相对应的类库

<pre><code>

localhost:XTBloginPage liuyihua$ pod lib lint
XTBloginPage (0.1.6)
 ERROR | [iOS] unknown: Encountered an unknown error (Unable to find a specification for `XTBBaseLib/Network` depended upon by `XTBloginPage`) during validation.
 [!] XTBloginPage did not pass validation, due to 1 error.
[!] The validator for Swift projects uses Swift 3.0 by default, if you are using a different version of swift you can use a `.swift-version` file to set the version for your Pod. For example to use Swift 2.3, run: 
    `echo "2.3" > .swift-version`.
You can use the `--no-clean` option to inspect any issue.

</code></pre> 

localhost:XTBloginPage liuyihua$ pod env

主要的原因是cocoapods不知道你的私有库存放在那一个远程库中,需要自己明示仓库来源 :本地验证和提交远程都一样;

$pod lib lint --sources='https://git.coding.net/xxxxxx/LYHXTBSepc.git,https://github.com/CocoaPods/Specs.git' --use-libraries --allow-warnings

localhost:XTBloginPage liuyihua$ pod lib lint --sources='https://git.coding.net/xxxxxx/LYHXTBSepc.git,https://github.com/CocoaPods/Specs.git' --use-libraries --allow-warnings

 -> XTBloginPage (0.1.6)
XTBloginPage passed validation.
localhost:XTBloginPage liuyihua$ 

提交远程仓库

localhost:XTBBaseLib liuyihua$ pod repo push LYHXTBSepc Lib.podspec  --sources='https://git.coding.net/xxxxxx/LYHXTBSepc.git,https://github.com/CocoaPods/Specs.git' --use-libraries --allow-warnings

验证通过!

2.cocoapods 上传私有库或者远程库遇见的问题汇总

一、本地验证报错 $ pod lib lint

       localhost:XTBMain liuyihua$ pod lib lint
       -> XTBMain (0.1.3)
          - ERROR | [iOS] unknown: Encountered an unknown error (Unable to find a specification for `XTBBaseLib/Category` depended upon by `XTBMain`) during validation.

      [!] XTBMain did not pass validation, due to 1 error.
      [!] The validator for Swift projects uses Swift 3.0 by default, if you             are using a different version of swift you can use a `.swift-version` file to       set the version for your Pod. For example to use Swift 2.3, run: 
    `echo "2.3" > .swift-version`.
      You can use the `--no-clean` option to inspect any issue.
      localhost:XTBMain liuyihua$ 

根据提示信息,我们了解到主要是因为
私有库的 'XTBBaseLib/Category '找不到
假如你已经创建好私有库A,并想在私有库B中使用私有库A,在库B的.podspec文件中你需要制定依赖:

  s.dependency 'pod projectName(A)', '~> version'

校验sepc可用性时,执行以下命令:

  pod sepc lint 文件名.podspec

发生错误:

   - ERROR | [iOS] unknown: Encountered an unknown error (Unable to find a specification for `XTBBaseLib/Category` depended upon by `XTBMain`) during validation.

原因

校验podspec文件时会到远程podspec库查找相关依赖,默认只会到官方specs库校验,此时需要指定远程specs库去校验。

解放方案:

  localhost:XTBMain liuyihua$ pod spec lint 文件名.podspec --sources='http://[privateLibName]/cocoaspecs.git,https://github.com/CocoaPods/Specs.git'

  -> XTBMain (0.1.3)

  XTBMain passed validation.
  localhost:XTBMain liuyihua$

参考地址http://m.blog.csdn.net/article/details?id=50515434

3.CocoaPods 错误 target overrides the 'OTHER_LDFLAGS'...

        [!] The `Paopao [Debug]` target overrides the `PODS_ROOT` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.

     [!] The `Paopao [Debug]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.

 [!] The `Paopao [Release]` target overrides the `PODS_ROOT` build setting defined in `Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.

       [!] The `Paopao [Release]` target overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the `$(inherited)` flag, or
- Remove the build settings from the target.

这种警告是不能忽视的,它带来的直接后果就是无法通过编译。直接报错:

 ld: symbol(s) not found for architecture x86_64 clang:
 error: linker command  ........

而产生此警告的原因是项目 Target 中的一些设置,CocoaPods 也做了默认的设置,如果两个设置结果不一致,就会造成问题。

我想要使用 CocoaPods 中的设置,分别在我的项目中定义PODS_ROOTOther Linker Flags的地方,把他们的值用$(inherited)替换掉,进入终端,执行

   pod update --verbose --no-repo-update
image.png
image.png

写了一个简单的类似于支付宝首页的菜单选择的类库(这是地址),已经完成了提交到了cocopads远程仓库上,

image

但是就是在进行 pod search HZChooseButton 就搜索不到报错信息,如下:

image

解决过程如下:

一开始我想是不是因为版本的问题,

执行pod setup

在终端输入pod setup,会出现Setting up CocoaPods master repo,等几分钟,会输入Setup

completed,说明pod setup执行成功。

结果pod search还是失败

image

但是我输入pod search AFN,却有相应的结果。

随后进行的百度了一下,发现是 search_index.json 文件的问题,需要 删除~/Library/Caches/CocoaPods目录下的search_index.json文件

终端输入rm ~/Library/Caches/CocoaPods/search_index.json

删除成功后再执行 $ pod search HZChooseButton 成功了!

image
image
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容