2014-03-31 51 views
0

對於以前的版本,我能夠成功創建dll,但現在我已經下載了Flurry的最新SDK(即4.4.0)。爲Flurry SDK 4.4.0創建Flurry分析dll以集成monotouch

我按照以下鏈接 Integrate Flurry Analytics into a MonoTouch app中給出的說明創建.dll,但是它在終端上給出了以下錯誤。

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'. 
+0

幾天前,我已經成功地在我的項目中整合了一個亂七八糟的樣本:https://github.com/mono/monotouch-bindings/tree/master/FlurryAnalytics,希望它能幫助你。 – choper

+0

我已經成功整合了以前的版本,但最新版本,它從綁定和最新的flurry SDK創建DLL時給出錯誤。 –

回答

1

它看起來像你使用make所有綁定到git repo(錯誤的目錄級別)。

你應該做的是在Flurry目錄中運行make。這將只建立你想要的綁定 - 而不會要求你下載每個綁定庫的每個需求。