Download gcm for ios without using cocoapods

Is there a way to get the Google Cloud Messaging platform without using Cocoapods? I use Carthage and do not want to use cocoapods only for this library.

+6
source share
1 answer

If you use pod in a demo project and you put this on your PodFile

target 'MyTarget' do use_frameworks! pod Firebase end 

Then pod install and below the Pods target you will get .framework, which you can use in your real project without using cocoapods. It's terrible to update the framework because you need a demo project, but better than nothing.

Hope this helps

0
source

All Articles