Kickflip / kickflip-ios-sdk

Kickflip iOS SDK
http://kickflip.io
Apache License 2.0
346 stars 143 forks source link

#import "librtmp/log.h" file not found #52

Open nirav700 opened 8 years ago

nirav700 commented 8 years ago

I am trying to implement kick flip IOS SDK in my project but after setup pod file its show me error message

<Bolts/BFTask.h> file not found

after searching on internet i found replace pod 'Kickflip'

to

pod 'Kickflip', :git => 'https://github.com/zummenix/kickflip-ios-sdk'

but after doing that it give me new error message

import "librtmp/log.h" file not found

so please tell me what should do to solve this problem?

nirav700 commented 8 years ago

not yet but if i find anything i will let you know.

nirav700 commented 8 years ago

I have solve this error from below step :

$ git clone git@github.com:Kickflip/kickflip-ios-example.git $ cd kickflip-ios-example $ git submodule update --init $ pod install

and then change podfile to this

pod 'Kickflip', :path => 'Submodules/kickflip-ios-sdk/Kickflip.podspec'

pod 'Kickflip' , :git => 'https://github.com/zummenix/kickflip-ios-sdk'

pod 'YapDatabase', '~> 2.5' pod 'SSPullToRefresh', '~> 1.2' pod 'UIAlertView-Blocks', '~> 1.0' pod 'VTAcknowledgementsViewController', '~> 0.10' pod 'BButton', '~> 4.0'

and also change on 'KFHLSWriter.m'

import "librtmp/log.h" to #import "log.h"

and comment this two lines

RTMP_LogSetLevel(RTMP_LOGALL) RTMP_LogSetLevel(RTMP_LOGCRIT)

And Last add one new File "KFSecrets.h"

rbarbish commented 8 years ago

@chrisballinger - Still an issue

developertechnostacks commented 8 years ago

i dont find any "KFSecrets.h" file

Arlem commented 8 years ago

@developertechnostacks You have to create it from scratch.

developertechnostacks commented 8 years ago

can u show me a steps or doc of that

Arlem commented 8 years ago

https://github.com/Kickflip/kickflip-ios-example#kfsecretsh

omargda commented 7 years ago

@chrisballinger - still an issue