0

所以我在尝试在我的设备上展示插页式广告时遇到了一个问题。

请求插页式广告总是返回成功消息,但是当我尝试调用 show 函数时,没有任何反应。

它只发生在插页式广告中,因为横幅广告正在设备上工作和展示。

此外,AdColony 仪表板收到新请求,但仍显示功能不起作用: 图片

我尝试过使用实时广告和测试广告。

我正在使用:
Unity 2020.1.4f1
External Dependency Manager 1.2.156
AdColony 4.3.1

这是我试图运行的代码的一部分:

AdColony.InterstitialAd _ad = null;

// Start is called before the first frame update
void Start()
{
    string[] zoneIds = new string[] { "myZoneID" };
    AdColony.Ads.Configure("myAppID", null, zoneIds);        

    AdColony.Ads.OnRequestInterstitial += (AdColony.InterstitialAd ad) => {
        _ad = ad;
    };

    AdColony.Ads.OnExpiring += (AdColony.InterstitialAd ad) => {
        AdColony.Ads.RequestInterstitialAd("myZoneID", null);
    };
}

public void Request()
{
    AdColony.Ads.RequestInterstitialAd("myZoneID", null);
}

public void Show()
{
    if (_ad != null) {
        AdColony.Ads.ShowAd(_ad);
    }
    else
    {
        Debug.Log("null");
    }
}

有没有办法解决这个问题?

4

1 回答 1

1

最后我让它工作了!

因此,为了展示广告,我需要解决三个问题。

  1. 我将 AndroidManifest.xml 文件从 Android/Plugin/AdColony 移动到 Android/Plugin 文件夹,因为只有在此路径中 Unity 才能读取清单文件。
  2. 我在默认 Unity AndroidManifest.xml 文件中添加了一项活动。它修复了应用程序无法在设备上启动的错误。我将在此处附上我的整个 AndroidManifest.xml 代码。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adcolony.unitypluginpackage">

    <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" android:anyDensity="true" />

    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.INTERNET"/>


    <!-- OPTIONAL -->
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <!-- OPTIONAL -->
    <uses-permission android:name="android.permission.VIBRATE" />


    <application>
        <activity android:name="com.unity3d.player.UnityPlayerActivity"
                  android:theme="@style/UnityThemeSelector">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>

        <activity android:name="com.adcolony.sdk.AdColonyInterstitialActivity" android:configChanges="keyboardHidden|orientation|screenSize" android:hardwareAccelerated="true"/>

        <activity android:name="com.adcolony.sdk.AdColonyAdViewActivity"
        android:configChanges="keyboardHidden|orientation|screenSize"
        android:hardwareAccelerated="true"/>
    </application>

</manifest>
  1. 注释了 GameController 脚本 ConfigureAds() 函数中的所有折旧代码。

0

现在,插页式广告效果很好!

于 2020-09-11T09:14:45.867 回答