Max Campolo

Results 10 comments of Max Campolo

The newest version of cocoapods introduced this issue. I was able to fix it by updating the `glm` podspec to include a library search path. Are you all using the...

@reedjsmith I use a little bit of a custom setup, I'll explain it and hope it helps. tl;dr - I use a fork of glm where I add `s.xcconfig =...

This solution was for dynamic frameworks and Swift. The other option is to use it as a static library and import it with a bridging header (this is what the...

I use the same thing, that's the solution I posted above. I'll need more information on what's not working when you tried it to be able to help.

Yeah you also need glm, if you want to try out my branches your podfile should look like this. These are up to date with the master repo's but consider...

Okay I hadn't updated the SampleBroadcaster-Swift podfile to actually use this setup. I figured you were just including in your own project. I just pushed an update to the `update_headers`...

Here's the podspec I use. https://github.com/maxcampolo/VideoCore/blob/update_headers/VideoCore.podspec. The subspec is the section that starts `s.subspec 'Swift' do |swift|`. What I'm describing in the text you linked is this line `swift.public_header_files =...

`pod 'glm', :git => 'https://github.com/maxcampolo/glm.git'` replace the url with the path to your repo.

@satyamub it is public. Put `pod 'glm', :git => 'https://github.com/maxcampolo/glm.git'` in your podfile, not in the podspec, leave the podspec dependency as is. The VideoCore pod will see you already...

Stop the stream when you go to background and restart it when you enter foreground again.