I had the ads running before but i don't understand why it's not running now.
I get the following error in the xml
java.lang.NoSuchFieldError: AdsAttrs
at com.google.android.gms.ads.internal.client.zzj.<init>(Unknown Source)
at com.google.android.gms.ads.internal.client.zzy.<init>(Unknown Source)
at com.google.android.gms.ads.internal.client.zzy.<init>(Unknown Source)
at com.google.android.gms.ads.internal.client.zzy.<init>(Unknown Source)
at com.google.android.gms.ads.AdView.<init>(Unknown Source)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
Here is my xml
code
<RelativeLayout
android:id="@+id/adslayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/black">
<com.google.android.gms.ads.AdView
android:id="@+id/ads"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="xxxxxxxxxxx" />
</RelativeLayout>
And in the activity i'm calling it as
AdRequest adRequest = new AdRequest.Builder()
.build();
mAdView = new AdView(this);
mAdView.setAdSize(AdSize.SMART_BANNER);
mAdView.setAdUnitId("--------
mAdView.loadAd(adRequest);
adslayout.addView(mAdView);
For anyone that having same problem, check your gradle module app if have no incompatibility between versions of compiles from google. I solved my problem just right now by removing a compile of app indexing that was causing imcompatibility with a compile from firebase NOTE: That compile was not usefull for me, that's why I deleted it, otherwise i just would try to change compiles to a same version, hope this help. (sorry about the english im Brazilian without any english course)