推送到 cocoapods 会出现错误 `resource_bundles`
Pushing to cocoapods get an error `resource_bundles`
将代码推送到 GitHub 后,执行下一步以推送到 Cocoapods:
git tag 0.1.1
和 git push origin 0.1.1
一切正常,
但是当执行将 .podspec 文件推送到 Cocoapods 时 pod trunk push ASAutoResizingTextView.podspec
得到下一个错误
- 错误 | [iOS] 文件模式:
ASAutoResizingTextView
的 resource_bundles
模式不匹配任何文件。
为了解决这个问题,我只是在 .podspec 文件中评论下一个
#s.resource_bundles = {
#'ASAutoResizingTextView' => ['Pod/Assets/*.png']
#}
将代码推送到 GitHub 后,执行下一步以推送到 Cocoapods:
git tag 0.1.1
和 git push origin 0.1.1
一切正常,
但是当执行将 .podspec 文件推送到 Cocoapods 时 pod trunk push ASAutoResizingTextView.podspec
得到下一个错误
- 错误 | [iOS] 文件模式:
ASAutoResizingTextView
的resource_bundles
模式不匹配任何文件。
为了解决这个问题,我只是在 .podspec 文件中评论下一个
#s.resource_bundles = {
#'ASAutoResizingTextView' => ['Pod/Assets/*.png']
#}