Getting java.lang.NoClassDefFoundError for admob interstitials on some devicesHow can I get device ID for AdmobAdmob interstitial ads on 2.2Admob interstitial with audioAdMob interstitial not showing upAuto-reloading the admob interstitial ad?Showing Admob Interstitial on a FragmentUnity5 admob interstitial not implementing in deviceAdmob Interstitial ad not showing fullScreen on devices iOSAdmob Interstitial Ad setupAdMob interstitial ad is not loading

Is there a way in which all the members can be seated?

Convert Unix timestamp to human-readable time

Leaving car in Lubbock, Texas for 1 month

Left a meeting without apparent reason. What to do?

Was this “caterpillar” strategy a good way to advance my pawns?

Has the 75 move draw rule ever been invoked in a FIDE rated standard game involving a GM?

Can a stolen Android phone with USB debugging enabled have screen lock bypassed?

Should I correct a mistake on an arXiv manuscript, that I found while refereeing it?

Help resolve territory acquisition design difference of opinion in MMO RTS

Was the payload bay of the Space Shuttle depressurized before launch?

Why are Poisson regression coefficients biased?

Which verb means "to pet <an animal>"?

Is it okay to have an email address called "SS"?

Can only rich people become president?

Template function does not work for pointer-to-member-function taking const ref

Civilisation on a Cube Planet

Simple n-body class in C++

ASCII Expansion

How can I tell if I have simplified my talk too much?

(Would be) teammate called me privately to tell me he does not wish to work with me

How do I handle a paladin who falls, but wants to choose a different class instead of taking the Oathbreaker subclass?

Keeping lines in PDF after export in QGIS 3.4?

Is 2FA via mobile phone still a good idea when phones are the most exposed device?

Why do some PCBs have the courtyard in the silkscreen layer?



Getting java.lang.NoClassDefFoundError for admob interstitials on some devices


How can I get device ID for AdmobAdmob interstitial ads on 2.2Admob interstitial with audioAdMob interstitial not showing upAuto-reloading the admob interstitial ad?Showing Admob Interstitial on a FragmentUnity5 admob interstitial not implementing in deviceAdmob Interstitial ad not showing fullScreen on devices iOSAdmob Interstitial Ad setupAdMob interstitial ad is not loading






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









1

















Play Store reports crashes on newest AdMob on some devices:



java.lang.NoClassDefFoundError: 
at jq.b (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
at jp.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
at jr.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):19)
at com.google.android.gms.ads.internal.util.ar.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):15)
at iu.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):20)
at iu.run (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):8)
Caused by: java.lang.ClassNotFoundException:
at dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:134)
at java.lang.ClassLoader.loadClass (ClassLoader.java:379)
at ad.loadClass (com.google.android.gms.dynamite_dynamiteloader@15090081@15.0.90 (100400-231259764):4)
at java.lang.ClassLoader.loadClass (ClassLoader.java:312)


I have upgraded my gradle file to use the newest targetSdkVersion 28 and newest AdMob SDK 17.2.0. But I had conflict problems with different versions of com.android.support libraries. I was able to compile properly by "forcing" com.android.support libraries in version 28.0.0. Maybe this is causing the issue? I am not doing anything fancy, just including admob, facebook, firebase, ... The same app code works without crashes for older targetSdkVersion.



Also I noticed there is the possibility to add the ads over firebase which uses different lib implementation 'com.google.firebase:firebase-ads:17.2.0' and different classes and requries different data in manifest.



Here is my gradle file:



apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig
minSdkVersion 16
targetSdkVersion 28
versionCode 373
versionName "4.0.6"

buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'


flavorDimensions "tier"
productFlavors
playStoreFree
...
dimension "tier"


repositories
mavenCentral()
maven
url "https://maven.google.com"


dependencies
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':SliderPreference')
implementation 'com.android.support:customtabs:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:gridlayout-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.google.android.gms:play-services-ads:17.2.0'
implementation 'com.google.android.gms:play-services-analytics:16.0.8'
implementation 'com.google.firebase:firebase-core:16.0.8'
implementation 'com.anjlab.android.iab.v3:library:1.0.44'
implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'


apply plugin: 'com.google.gms.google-services'


In Manifest I have



<application ...
<meta-data
android:name="com.google.android.gms.ads.AD_MANAGER_APP"
android:value="true"/>
...


Main activity:



InterstitialAd mInterstitialAd;

@Override
protected void onPostCreate(Bundle savedInstanceState)
MobileAds.initialize(context, BuildConfig.AD_APP_ID);
MobileAds.setAppMuted(true);

mInterstitialAd = new InterstitialAd (this);
mInterstitialAd.setAdUnitId(BuildConfig.AD_UNIT_ID);

mInterstitialAd.setAdListener(new AdListener()
@Override
public void onAdFailedToLoad(int errorCode)
Log.d("AD", "onAdFailedToLoad: "+String.valueOf(errorCode));
super.onAdFailedToLoad(errorCode);


@Override
public void onAdLoaded()
Log.d("AD", "onAdLoaded: ");
super.onAdLoaded();


@Override
public void onAdClosed()
requestNewInterstitial();

);
requestNewInterstitial();




private void requestNewInterstitial()
AdRequest adRequest = new AdRequest.Builder().build();
mInterstitialAd.loadAd(adRequest);










share|improve this question


































    1

















    Play Store reports crashes on newest AdMob on some devices:



    java.lang.NoClassDefFoundError: 
    at jq.b (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
    at jp.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
    at jr.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):19)
    at com.google.android.gms.ads.internal.util.ar.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):15)
    at iu.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):20)
    at iu.run (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):8)
    Caused by: java.lang.ClassNotFoundException:
    at dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:134)
    at java.lang.ClassLoader.loadClass (ClassLoader.java:379)
    at ad.loadClass (com.google.android.gms.dynamite_dynamiteloader@15090081@15.0.90 (100400-231259764):4)
    at java.lang.ClassLoader.loadClass (ClassLoader.java:312)


    I have upgraded my gradle file to use the newest targetSdkVersion 28 and newest AdMob SDK 17.2.0. But I had conflict problems with different versions of com.android.support libraries. I was able to compile properly by "forcing" com.android.support libraries in version 28.0.0. Maybe this is causing the issue? I am not doing anything fancy, just including admob, facebook, firebase, ... The same app code works without crashes for older targetSdkVersion.



    Also I noticed there is the possibility to add the ads over firebase which uses different lib implementation 'com.google.firebase:firebase-ads:17.2.0' and different classes and requries different data in manifest.



    Here is my gradle file:



    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 28
    buildToolsVersion '28.0.3'
    defaultConfig
    minSdkVersion 16
    targetSdkVersion 28
    versionCode 373
    versionName "4.0.6"

    buildTypes
    release
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'


    flavorDimensions "tier"
    productFlavors
    playStoreFree
    ...
    dimension "tier"


    repositories
    mavenCentral()
    maven
    url "https://maven.google.com"


    dependencies
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation project(':SliderPreference')
    implementation 'com.android.support:customtabs:28.0.0'
    implementation 'com.android.support:animated-vector-drawable:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:gridlayout-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.google.android.gms:play-services-ads:17.2.0'
    implementation 'com.google.android.gms:play-services-analytics:16.0.8'
    implementation 'com.google.firebase:firebase-core:16.0.8'
    implementation 'com.anjlab.android.iab.v3:library:1.0.44'
    implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'


    apply plugin: 'com.google.gms.google-services'


    In Manifest I have



    <application ...
    <meta-data
    android:name="com.google.android.gms.ads.AD_MANAGER_APP"
    android:value="true"/>
    ...


    Main activity:



    InterstitialAd mInterstitialAd;

    @Override
    protected void onPostCreate(Bundle savedInstanceState)
    MobileAds.initialize(context, BuildConfig.AD_APP_ID);
    MobileAds.setAppMuted(true);

    mInterstitialAd = new InterstitialAd (this);
    mInterstitialAd.setAdUnitId(BuildConfig.AD_UNIT_ID);

    mInterstitialAd.setAdListener(new AdListener()
    @Override
    public void onAdFailedToLoad(int errorCode)
    Log.d("AD", "onAdFailedToLoad: "+String.valueOf(errorCode));
    super.onAdFailedToLoad(errorCode);


    @Override
    public void onAdLoaded()
    Log.d("AD", "onAdLoaded: ");
    super.onAdLoaded();


    @Override
    public void onAdClosed()
    requestNewInterstitial();

    );
    requestNewInterstitial();




    private void requestNewInterstitial()
    AdRequest adRequest = new AdRequest.Builder().build();
    mInterstitialAd.loadAd(adRequest);










    share|improve this question






























      1












      1








      1








      Play Store reports crashes on newest AdMob on some devices:



      java.lang.NoClassDefFoundError: 
      at jq.b (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
      at jp.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
      at jr.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):19)
      at com.google.android.gms.ads.internal.util.ar.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):15)
      at iu.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):20)
      at iu.run (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):8)
      Caused by: java.lang.ClassNotFoundException:
      at dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:134)
      at java.lang.ClassLoader.loadClass (ClassLoader.java:379)
      at ad.loadClass (com.google.android.gms.dynamite_dynamiteloader@15090081@15.0.90 (100400-231259764):4)
      at java.lang.ClassLoader.loadClass (ClassLoader.java:312)


      I have upgraded my gradle file to use the newest targetSdkVersion 28 and newest AdMob SDK 17.2.0. But I had conflict problems with different versions of com.android.support libraries. I was able to compile properly by "forcing" com.android.support libraries in version 28.0.0. Maybe this is causing the issue? I am not doing anything fancy, just including admob, facebook, firebase, ... The same app code works without crashes for older targetSdkVersion.



      Also I noticed there is the possibility to add the ads over firebase which uses different lib implementation 'com.google.firebase:firebase-ads:17.2.0' and different classes and requries different data in manifest.



      Here is my gradle file:



      apply plugin: 'com.android.application'

      android {
      compileSdkVersion 28
      buildToolsVersion '28.0.3'
      defaultConfig
      minSdkVersion 16
      targetSdkVersion 28
      versionCode 373
      versionName "4.0.6"

      buildTypes
      release
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'


      flavorDimensions "tier"
      productFlavors
      playStoreFree
      ...
      dimension "tier"


      repositories
      mavenCentral()
      maven
      url "https://maven.google.com"


      dependencies
      implementation fileTree(include: ['*.jar'], dir: 'libs')
      implementation project(':SliderPreference')
      implementation 'com.android.support:customtabs:28.0.0'
      implementation 'com.android.support:animated-vector-drawable:28.0.0'
      implementation 'com.android.support:cardview-v7:28.0.0'
      implementation 'com.android.support:gridlayout-v7:28.0.0'
      implementation 'com.android.support:recyclerview-v7:28.0.0'
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support:support-v4:28.0.0'
      implementation 'com.google.android.gms:play-services-ads:17.2.0'
      implementation 'com.google.android.gms:play-services-analytics:16.0.8'
      implementation 'com.google.firebase:firebase-core:16.0.8'
      implementation 'com.anjlab.android.iab.v3:library:1.0.44'
      implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
      implementation 'com.android.support:recyclerview-v7:28.0.0'


      apply plugin: 'com.google.gms.google-services'


      In Manifest I have



      <application ...
      <meta-data
      android:name="com.google.android.gms.ads.AD_MANAGER_APP"
      android:value="true"/>
      ...


      Main activity:



      InterstitialAd mInterstitialAd;

      @Override
      protected void onPostCreate(Bundle savedInstanceState)
      MobileAds.initialize(context, BuildConfig.AD_APP_ID);
      MobileAds.setAppMuted(true);

      mInterstitialAd = new InterstitialAd (this);
      mInterstitialAd.setAdUnitId(BuildConfig.AD_UNIT_ID);

      mInterstitialAd.setAdListener(new AdListener()
      @Override
      public void onAdFailedToLoad(int errorCode)
      Log.d("AD", "onAdFailedToLoad: "+String.valueOf(errorCode));
      super.onAdFailedToLoad(errorCode);


      @Override
      public void onAdLoaded()
      Log.d("AD", "onAdLoaded: ");
      super.onAdLoaded();


      @Override
      public void onAdClosed()
      requestNewInterstitial();

      );
      requestNewInterstitial();




      private void requestNewInterstitial()
      AdRequest adRequest = new AdRequest.Builder().build();
      mInterstitialAd.loadAd(adRequest);










      share|improve this question

















      Play Store reports crashes on newest AdMob on some devices:



      java.lang.NoClassDefFoundError: 
      at jq.b (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
      at jp.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):3)
      at jr.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):19)
      at com.google.android.gms.ads.internal.util.ar.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):15)
      at iu.a (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):20)
      at iu.run (com.google.android.gms.dynamite_adsdynamite@15090081@15.0.90 (100400-231259764):8)
      Caused by: java.lang.ClassNotFoundException:
      at dalvik.system.BaseDexClassLoader.findClass (BaseDexClassLoader.java:134)
      at java.lang.ClassLoader.loadClass (ClassLoader.java:379)
      at ad.loadClass (com.google.android.gms.dynamite_dynamiteloader@15090081@15.0.90 (100400-231259764):4)
      at java.lang.ClassLoader.loadClass (ClassLoader.java:312)


      I have upgraded my gradle file to use the newest targetSdkVersion 28 and newest AdMob SDK 17.2.0. But I had conflict problems with different versions of com.android.support libraries. I was able to compile properly by "forcing" com.android.support libraries in version 28.0.0. Maybe this is causing the issue? I am not doing anything fancy, just including admob, facebook, firebase, ... The same app code works without crashes for older targetSdkVersion.



      Also I noticed there is the possibility to add the ads over firebase which uses different lib implementation 'com.google.firebase:firebase-ads:17.2.0' and different classes and requries different data in manifest.



      Here is my gradle file:



      apply plugin: 'com.android.application'

      android {
      compileSdkVersion 28
      buildToolsVersion '28.0.3'
      defaultConfig
      minSdkVersion 16
      targetSdkVersion 28
      versionCode 373
      versionName "4.0.6"

      buildTypes
      release
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'


      flavorDimensions "tier"
      productFlavors
      playStoreFree
      ...
      dimension "tier"


      repositories
      mavenCentral()
      maven
      url "https://maven.google.com"


      dependencies
      implementation fileTree(include: ['*.jar'], dir: 'libs')
      implementation project(':SliderPreference')
      implementation 'com.android.support:customtabs:28.0.0'
      implementation 'com.android.support:animated-vector-drawable:28.0.0'
      implementation 'com.android.support:cardview-v7:28.0.0'
      implementation 'com.android.support:gridlayout-v7:28.0.0'
      implementation 'com.android.support:recyclerview-v7:28.0.0'
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support:support-v4:28.0.0'
      implementation 'com.google.android.gms:play-services-ads:17.2.0'
      implementation 'com.google.android.gms:play-services-analytics:16.0.8'
      implementation 'com.google.firebase:firebase-core:16.0.8'
      implementation 'com.anjlab.android.iab.v3:library:1.0.44'
      implementation 'com.facebook.android:facebook-android-sdk:4.31.0'
      implementation 'com.android.support:recyclerview-v7:28.0.0'


      apply plugin: 'com.google.gms.google-services'


      In Manifest I have



      <application ...
      <meta-data
      android:name="com.google.android.gms.ads.AD_MANAGER_APP"
      android:value="true"/>
      ...


      Main activity:



      InterstitialAd mInterstitialAd;

      @Override
      protected void onPostCreate(Bundle savedInstanceState)
      MobileAds.initialize(context, BuildConfig.AD_APP_ID);
      MobileAds.setAppMuted(true);

      mInterstitialAd = new InterstitialAd (this);
      mInterstitialAd.setAdUnitId(BuildConfig.AD_UNIT_ID);

      mInterstitialAd.setAdListener(new AdListener()
      @Override
      public void onAdFailedToLoad(int errorCode)
      Log.d("AD", "onAdFailedToLoad: "+String.valueOf(errorCode));
      super.onAdFailedToLoad(errorCode);


      @Override
      public void onAdLoaded()
      Log.d("AD", "onAdLoaded: ");
      super.onAdLoaded();


      @Override
      public void onAdClosed()
      requestNewInterstitial();

      );
      requestNewInterstitial();




      private void requestNewInterstitial()
      AdRequest adRequest = new AdRequest.Builder().build();
      mInterstitialAd.loadAd(adRequest);







      gradle admob






      share|improve this question
















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 15:45







      Alex

















      asked Mar 22 at 15:36









      AlexAlex

      718 bronze badges




      718 bronze badges

























          1 Answer
          1






          active

          oldest

          votes


















          2


















          Answer from Admob:



          Thanks for reaching out to us. Our team has a fix in place for this issue. The fix should be available in the future releases of the SDK. Please keep an eye on our release history page for more updates.






          share|improve this answer


























          • This continues happening to me in the most recent release of their sdk

            – Genaut
            May 9 at 20:07






          • 1





            Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

            – Rodrigo Graça
            Jun 1 at 18:22












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303145%2fgetting-java-lang-noclassdeffounderror-for-admob-interstitials-on-some-devices%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown


























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2


















          Answer from Admob:



          Thanks for reaching out to us. Our team has a fix in place for this issue. The fix should be available in the future releases of the SDK. Please keep an eye on our release history page for more updates.






          share|improve this answer


























          • This continues happening to me in the most recent release of their sdk

            – Genaut
            May 9 at 20:07






          • 1





            Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

            – Rodrigo Graça
            Jun 1 at 18:22















          2


















          Answer from Admob:



          Thanks for reaching out to us. Our team has a fix in place for this issue. The fix should be available in the future releases of the SDK. Please keep an eye on our release history page for more updates.






          share|improve this answer


























          • This continues happening to me in the most recent release of their sdk

            – Genaut
            May 9 at 20:07






          • 1





            Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

            – Rodrigo Graça
            Jun 1 at 18:22













          2














          2










          2









          Answer from Admob:



          Thanks for reaching out to us. Our team has a fix in place for this issue. The fix should be available in the future releases of the SDK. Please keep an eye on our release history page for more updates.






          share|improve this answer














          Answer from Admob:



          Thanks for reaching out to us. Our team has a fix in place for this issue. The fix should be available in the future releases of the SDK. Please keep an eye on our release history page for more updates.







          share|improve this answer













          share|improve this answer




          share|improve this answer










          answered Mar 28 at 21:34









          AlexAlex

          718 bronze badges




          718 bronze badges















          • This continues happening to me in the most recent release of their sdk

            – Genaut
            May 9 at 20:07






          • 1





            Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

            – Rodrigo Graça
            Jun 1 at 18:22

















          • This continues happening to me in the most recent release of their sdk

            – Genaut
            May 9 at 20:07






          • 1





            Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

            – Rodrigo Graça
            Jun 1 at 18:22
















          This continues happening to me in the most recent release of their sdk

          – Genaut
          May 9 at 20:07





          This continues happening to me in the most recent release of their sdk

          – Genaut
          May 9 at 20:07




          1




          1





          Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

          – Rodrigo Graça
          Jun 1 at 18:22





          Same as @Genaut ... I read we got to add the http legacy thing but then I read the maps API had the same bug and was fixed in the SDK.... I assumed it fixed admob too but apparently we still get the bug... Im using SDK version 17.2....

          – Rodrigo Graça
          Jun 1 at 18:22




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303145%2fgetting-java-lang-noclassdeffounderror-for-admob-interstitials-on-some-devices%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown









          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript