AdMob: "Aktivität ist ausgelaufen ServiceConnection" und "AdvertisingIdClient unbindService gescheitert."

Ich bin mit AdMob in meine app. Ich folgte Leitlinien für dessen Umsetzung, und das banner ist richtig zeigt, und laden Sie die ads. Meine MainActivity ist dafür verantwortlich, erstellen von Referenzen, das Gebäude AdRequest und die Anzeige der banner, sowie das anhalten, fortsetzen und die Zerstörung der AdView. Jedesmal, wenn die AdRequest geladen wurde, wenn die Aktivität der onStop() aufgerufen wird, wird folgende Ausnahme erzeugt:

6706-6706/com.rocca.controlloSpese E/ActivityThread Activity com.rocca.controlloSpese.MainActivity has leaked ServiceConnection com.google.android.gms.common.b@52b1cc3c that was originally bound here
android.app.ServiceConnectionLeaked: Activity com.rocca.controlloSpese.MainActivity has leaked ServiceConnection com.google.android.gms.common.b@52b1cc3c that was originally bound here
        at android.app.LoadedApk$ServiceDispatcher.<init>(LoadedApk.java:970)
        at android.app.LoadedApk.getServiceDispatcher(LoadedApk.java:864)
        at android.app.ContextImpl.bindServiceCommon(ContextImpl.java:1577)
        at android.app.ContextImpl.bindService(ContextImpl.java:1560)
        at android.content.ContextWrapper.bindService(ContextWrapper.java:517)
        at com.google.android.gms.ads.identifier.a.b(SourceFile:330)
        at com.google.android.gms.ads.identifier.a.a(SourceFile:187)
        at com.google.android.gms.ads.identifier.a.b(SourceFile:239)
        at com.google.android.a.t.f(SourceFile:132)
        at com.google.android.a.t.b(SourceFile:182)
        at com.google.android.a.q.a(SourceFile:258)
        at com.google.android.a.q.a(SourceFile:195)
        at com.google.android.gms.ads.internal.m.a(SourceFile:107)
        at com.google.android.gms.ads.internal.request.c.a(SourceFile:99)
        at com.google.android.gms.ads.internal.util.b.run(SourceFile:17)
        at com.google.android.gms.ads.internal.util.d.call(SourceFile:29)
        at com.google.android.gms.ads.internal.util.e.call(SourceFile:49)
        at java.util.concurrent.FutureTask.run(FutureTask.java:237)
        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
        at java.lang.Thread.run(Thread.java:841)

gefolgt von dieser info:

6706-6781/com.rocca.controlloSpese I/AdvertisingIdClient AdvertisingIdClient unbindService failed.
java.lang.IllegalArgumentException: Service not registered: com.google.android.gms.common.b@52b1cc3c
        at android.app.LoadedApk.forgetServiceDispatcher(LoadedApk.java:922)
        at android.app.ContextImpl.unbindService(ContextImpl.java:1611)
        at android.content.ContextWrapper.unbindService(ContextWrapper.java:529)
        at com.google.android.gms.ads.identifier.a.c(SourceFile:275)
        at com.google.android.gms.ads.identifier.b.c(SourceFile:100)
        at com.google.android.gms.ads.identifier.b.run(SourceFile:110)

Dies nicht der Fall, wenn die AdRequest ist nicht gebaut und geladen werden. Ich meine IABHelper in onCreate(), und wenn der Benutzer nicht kaufen meine "remove-ads" - sku geschaltet werden. Dies ist der code, den ich verwenden, um laden Sie die ads:

private void showAds() {
    int adresult = GooglePlayServicesUtil.isGooglePlayServicesAvailable(MainActivity.this);
    if (adresult == ConnectionResult.SUCCESS) {
        //if possible, show ads
        AdRequest adRequest = new AdRequest.Builder()
                .addTestDevice(AdRequest.DEVICE_ID_EMULATOR) 
                .addTestDevice("C144E9DA02EA7B26F74ED2C231F31D38") 
                .addTestDevice("93BABD84466B8C1EF529D2FB39D1ACE8") 
                .addTestDevice("BEAA738068664AE9BBF673E37A782E03") 
                .addTestDevice("E51508081F77DF84C129EE471DE67141") 
                .build();
        adView.setVisibility(View.VISIBLE);
        adView.loadAd(adRequest);
    } else {
        //if there's a problem, show error and close app
        GooglePlayServicesUtil.getErrorDialog(adresult, MainActivity.this, 0, new DialogInterface.OnCancelListener() {
            @Override
            public void onCancel(DialogInterface dialogInterface) {
                finish();
            }
        }).show();
    }
}

adView ist pause(), resume() und destroy() sind aufgerufen, in der jeweiligen Aktivität Methoden. Praktisch ist die app die Leistung ist nicht betroffen, aber ich möchte lieber vermeiden von Speicherlecks. Wie kann ich vermeiden, dass die Ausnahme?

EDIT: die Manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.rocca.controlloSpese" >

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="com.rocca.controlloSpese.BROADCAST_PERMISSION" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:finishOnCloseSystemDialogs="true"
        android:label="@string/app_name"
        android:launchMode="singleTop" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />
    <activity
        android:name="com.google.android.gms.ads.AdActivity"
        android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />        
</application>

  • kannst du deine manifest-Datei hier?
  • sicher, ich Schnitt anderen Erklärungen um es kurz und klar. Nur MainActivity lädt die anzeigen.
  • tun Sie etwas besonderes in der onStop () - Methode?
  • in der onStop () - es gibt nur eine code-Zeile nicht mit admob, auch nicht Wert-Aktualisierung in Frage.
  • groups.google.com/forum/#!topic/google-admob-anzeigen-sdk/... scheint, wie Sie arbeiten an dem Problem.
InformationsquelleAutor devrocca | 2014-11-29
Schreibe einen Kommentar