0

Flurry Analytics を統合し、Flurry AppCircle クリップを追加しようとしていますが、AppCircle ドキュメントはバナーにのみ関連しているようです。

アプリの使用中に重要なタイミングで表示される全画面広告または動画広告を探しており、その実装方法のドキュメントを参照したいと考えています。

フルスクリーンの AppCircle クリップを作成する例はありますか?

4

3 に答える 3

1

AppCircle は、利用できる openTakeover を提供します。呼び出しの例を次に示します。

[FlurryAppCircle openTakeover:@"my_hook_name" orientation:orientationString
    rewardImage:rewardImage rewardMessage:rewardString userCookies:nil];

マイク
パートナー インテグレーション、Flurry

于 2011-11-30T16:17:37.267 に答える
1

Using the Flurry SDK (3.0.3), after including all the proper header files...

Include the FlurryAdDelegate protocol:

// MyAppDelegate.h
@interface MyAppDelegate : NSObject <FlurryAdDelegate> {
    // ...
}

Setup Flurry Analytics and AppCircle: (Not sure why the delegate-setting redundancy, but it didn't seem to work with only setting the protocol.)

// MyAppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [FlurryAppCircle setAppCircleEnabled:YES];
    [FlurryClips setVideoAdsEnabled:YES];
    [FlurryAppCircle setAppCircleDelegate:self];
    [FlurryAnalytics startSession:@"AWWWTH36PXLU6Y3DN3GB"];

    // rest of my code ...
}

Then in my custom UIView class: (Again, after including all the proper header files)

// MyCustomView.m
[FlurryClips videoAdIsAvailable:@"VIDEO_SPLASH_HOOK"];
[FlurryClips openVideoTakeover:@"VIDEO_SPLASH_HOOK"
                   orientation:@"portrait"
                   rewardImage:nil
                 rewardMessage:nil
                   userCookies:nil
                      autoPlay:YES];

Also be sure to #import MediaPlayer.h in the appropriate view. (I think I read this somewhere in some version of the Flurry docs, but can't find it now... Doesn't help that the PDFs have a funny character encoding and are thus non-indexable).

I'd host the AppCircle-Clips docs they sent me, but am not sure if they'd approve, since they don't seem to have these available on the downloaded SDK. (Perhaps, because it won't let me download the 3.1 for my project?)

For further AppCircle-Clips-related questions, you can also email appcircleclips@flurry.com

于 2011-12-08T19:30:54.753 に答える
0

まず、このスレッドについて謝罪しなければなりません。

そして、私は私の理由を示します。

私のプロジェクトは@Old McStopherで同じ問題に遭遇しました.そして、私はここで自分の質問をしました

残念ながら、誰も正解を教えてくれません。この質問に関する唯一の希望は、@Old McStopher が投稿した投稿です。「Thanks, Mike. Flurry の誰かが詳細な手順を返信しました。Clips 固有の手順への公式リンクを待っており、誰のためにもここに投稿します。他に興味があります。」

私のプロジェクトにはこの実装が本当に必要です.@Old McStopherが解決策を投稿できることを願っています. しかし、@Old McStopher に連絡する方法がわかりません。

もう一度お詫びします。

于 2011-12-07T03:38:59.590 に答える