0

您好,我正在使用 admob、JumpTap、Mobclix 和 InMobi 实施连环调解。而flurry调解文件说,

To implement an Ad Network you must perform the following steps:
    1. Include the Ad Network Android SDK with your app and add it to the build path. Follow the
    instructions from the Ad network on how to complete this step.
    2. Create the proper “activity” and “meta-­data” tags in AndroidManifest.xml
    a. the first meta-­data tag instructs the SDK about how to find the API_KEY
    b. the second meta-­data tag instructs the SDK whether to request test ads
    3. Add your API_KEY in strings.xml

这是否意味着我需要为每个广告网络(如 adMob、JumpTap、Mobclix 和 InMobi)提供 api 密钥?

还是flurry中介提供的同一个api密钥?

我很困惑,如果我们需要每个广告网络的密钥和他们的sdk,那么flurry中介有什么用?

谁能解释一下?

对不起我的英语不好。

4

2 回答 2

1

只需将其粘贴到您的清单中

<activity android:name="com.google.ads.AdActivity"
           android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

在你的布局文件中

<com.google.ads.AdView
    android:id="@+id/adview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    ads:adSize="BANNER"
    ads:adUnitId="Your app ID"
    ads:loadAdOnCreate="true"
     android:layout_below="@+id/advertRl"
    ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
    />
于 2013-05-30T04:58:19.767 回答
0

要显示广告,您需要在 admob.com 的管理设置中提供 appId。

于 2013-05-28T13:24:56.730 回答