문제

I would like to make a podspec for this static library.

In the library's Xcode project, I have a .a target for the library, and a .bundle target for a bundle, containing assets needed by the library. This bundle is not a directory, it's just a bundle target with references to files.

Is there a way to include that .bundle in the podspec?

도움이 되었습니까?

해결책 2

You want vendored_libraries and resource_bundles. All of these options are in the podspec documentation

다른 팁

What you're looking for is

s.resources ='path/to/SomeBundle.bundle'

If you have more than one bundle, use the array form.

s.resources =['path/to/SomeBundle.bundle', 'path/to/someBundle.bundle']
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top