关注这个问题已经 3 周了。它在删除两个第三方插件后开始发生,我认为以某种方式帮助 admob 工作,无论是由于代码延迟还是其他原因。上周,我从头开始重建了整个项目,让它运行得相当好,但它又重新开始了。为了以防万一,我还将开发操作系统从 Ubuntu 更改为 Win8,但这也没有解决问题。
我的感觉是admob sdk正在失去查询网络的能力。该应用程序本身可以运行,并且需要能够使用互联网。因此,该应用程序本身具有互联网权限。如果我要重新启动应用程序,有时它会工作,有时它不会。如果我将它置于测试模式,它应该始终可以工作,但我仍然收到以下错误(以及此会话期间的后续刷新):
07-14 12:21:12.600: I/Ads(13271): Request scenario: Offline with no buffered ads.
07-14 12:21:12.600: I/Ads(13271): Network is unavailable. Aborting ad request.
07-14 12:21:12.610: I/Ads(13271): onFailedToReceiveAd(A network error occurred.)
我注意到 url 正在谷歌 SDK 中被修改。我剪掉了一些结果,因为它包含我不想分享的信息。
07-14 12:21:12.175: I/Ads(13271): adRequestUrlHtml: <html><head><script src="http://media.admob.com/sdk-core-v40.js"></script>
07-14 12:21:12.585: I/Ads(13271): Received ad url: <url: "http://googleads.g.doubleclick.net:80/mads/gma?preqs=0&session_id=17668451291953494526
07-14 12:21:12.600: I/Ads(13271): Ad url modified to http://googleads.g.doubleclick.net:80/mads/gma?preqs=0&session_id=17668451291953494526&seq_num=1&u_w=360
我正在使用 Admob 6.4.1,但我升级到了 6.4.1,因为我在 6.3.1 中得到了同样的结果。
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
package="com.atomicent.blazereader"
android:versionCode="27"
android:versionName="1.14" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="17" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:resizeable="true"
android:anyDensity="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
<activity
android:name="com.atomicent.blazereader.BlazeReader"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
活动java文件:
@SuppressLint("SetJavaScriptEnabled")
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.init();
super.appView.getSettings().setJavaScriptEnabled(true);
super.setIntegerProperty("loadUrlTimeoutValue", 60000);
super.loadUrl("file:///android_asset/www/index.html");
super.appView.addJavascriptInterface(new Object()
{
@Suppress
public void RateApp()
{
LoadPage(getString(R.string.blazeReaderLink));
return;
}
@Suppress
public void writeLog(String tag, String textBlock)
{
Log.i(tag, textBlock);
return;
}
@Suppress
public void setPageUrl(String url)
{
pageUrl = url;
return;
}
@Suppress
public void refreshPage(String url)
{
mGaTracker.sendView(url);
GAServiceManager.getInstance().dispatch();
return;
}
@Suppress
public void SendException(String exception)
{
mGaTracker.sendException(exception, false);
GAServiceManager.getInstance().dispatch();
return;
}
@Suppress
public void OpenInBrowser()
{
OpenBrowserAction();
return;
}
@Suppress
public void EmailFeedback()
{
SendFeedbackAction();
return;
}
@Suppress
public void RefreshApp()
{
RefreshAction();
return;
}
@Suppress
public void BlazeReaderPro()
{
LoadPage(getString(R.string.blazeReaderProLink));
return;
}
@Suppress
public void OtherAppsLink()
{
LoadPage(getString(R.string.otherAtomicAppsLink));
return;
}
@Suppress
public void BlazeFacebook()
{
BlazeReaderFacebookAction();
return;
}
@Suppress
public void LoadCompleted()
{
//doAdMob();
return;
}
@Suppress
public void shareInterface(String subject, String title, String textBlock)
{
mGaTracker.sendEvent("ui_action", "share", pageUrl, null);
GAServiceManager.getInstance().dispatch();
ShareIntent(getActivity(), subject, title, textBlock, "text/plain");
return;
}
},"MyAndroid");
mGaInstance = GoogleAnalytics.getInstance(this);
mGaTracker = mGaInstance.getTracker(getString(R.string.ga_trackingId));
mHandler.postDelayed(new Runnable() {
public void run() {
doAdMob();
}
}, 5000);
}
protected void doAdMob()
{
// Create the adView
AdSize adSize;
String screenType = getString(R.string.screen_type);
if(screenType.equals("1"))
{
adSize = AdSize.BANNER;
}
else if(screenType.equals("2"))
{
adSize = AdSize.IAB_BANNER;
}
else if(screenType.equals("3"))
{
adSize = AdSize.IAB_LEADERBOARD;
}
else
{
adSize = AdSize.BANNER;
}
AdView adView = new AdView(this, adSize, "pubID");
LinearLayout layout = super.root;
layout.addView(adView);
AdRequest request = new AdRequest();
request.addTestDevice("B00EF0D66CFCBE408653D4FFE7DF8C2A");
request.addTestDevice("9B556DEC8E1B587D9DE1910F4D8ECFDC");
adView.loadAd(request);
adView.setAdListener(this);
}
在代码 AdView 中,我删除了我的 pubID 以便在此处发布它。非常需要一些帮助。这是怎么回事?有人有这个问题吗?我已经在 stackoverflow 和其他地方阅读了所有关于此的帖子,但没有任何内容有效。我也清理了几次项目。是否有一些设置可能会阻止 admob 查询网络?