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;
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
add a comment
|
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
add a comment
|
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
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
gradle admob
edited Mar 22 at 15:45
Alex
asked Mar 22 at 15:36
AlexAlex
718 bronze badges
718 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
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.
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
add a comment
|
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
add a comment
|
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.
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
add a comment
|
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.
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.
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
add a comment
|
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
add a comment
|
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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