我使用inmobi unity插件进行广告,但在演出后面临一个问题"非页内广告"使用函数InMobiAndroid.showInterstitial()
我无法关闭它我在关闭按钮上按了很多次但是没有关闭该怎么办?
if((string.Compare(InMobiAndroid.getInterstitialState(), "Ready") == 0 || string.Compare(InMobiAndroid.getInterstitialState(),"READY") == 0)&& !loadAd)
{
InMobiAndroid.showInterstitial();
loadAd = true;
}
答案 0 :(得分:1)
更新Android清单文件
添加
<meta-data android:name="unityplayer.ForwardNativeEventsToDalvik" android:value="true" />
中的
<activity android:name="com.unity3d.player.UnityPlayerActivity" android:label="@string/app_name" android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">