Mahesh Bansode
Mahesh Bansode

Reputation: 297

Creating Flurry analytics dll for Flurry SDK 4.4.0 for integrating with monotouch

For previous versions I was able to create dll successfully but now I have downloaded latest SDK of Flurry i.e. 4.4.0.

I am creating .dll by following instructions given in below link Integrate Flurry Analytics into a MonoTouch app but it is giving below error on terminal.

Error Section:
 make build DIRS="AdJitsu ATMHud facebook FlurryAnalytics FlurryAppCircle  GebePrinter      GoogleAdMobAds  MGSplitViewController Parse PayPal RedLaser Tapku TestFlight Three20    UrbanAirship"
   for i in AdJitsu ATMHud facebook FlurryAnalytics FlurryAppCircle  GebePrinter   GoogleAdMobAds  MGSplitViewController Parse PayPal RedLaser Tapku TestFlight Three20    UrbanAirship; do (cd $i && make); done
 (cd binding; make)
 It would appear that you do not have a copy of libAdJitsu.a which
 is needed to build the AdJitsu bindings.

 You'll need to obtain a copy of libAdJitsuSDK.a from AdJitsu.com
  make[3]: *** [libAdJitsuSDK.a] Error 1
 make[2]: *** [build-binding] Error 2
 (cd binding; make)
  make[3]: Nothing to be done for `all'.

Upvotes: 0

Views: 130

Answers (1)

poupou
poupou

Reputation: 43553

It looks like you used make for all the bindings in to git repo (wrong directory level).

What you should do is the run make inside the Flurry directory. That will build only the binding you want - and won't require you to download every requirements for every bound library.

Upvotes: 1

Related Questions