Is it possible to add a local dependency to .podspec file?

后端 未结 3 1425
时光取名叫无心
时光取名叫无心 2021-02-02 08:44

I\'m using cocoapods now I would like to add a local pod dependency in my project, something like:

s.dependency = \'my pod\', :path => \'\'

3条回答
  •  -上瘾入骨i
    2021-02-02 09:14

    You can use pod with a path

    pod 'PodName', :path => 'local_path_to/name.podspec'
    

    The full chain you can find here

提交回复
热议问题