Я делаю все, что нужно для показа баннера (с последующими инструкциями Admob).
Баннер показывает мой activity_main.xml
дизайн макета. Но он не отображается на устройствах (я пробую 5 мобильных телефонов, чтобы увидеть, показывается баннер или нет).
Вы можете увидеть мой activity_main.xml
дизайн макета: введите описание изображения здесь
И вы можете увидеть мое приложение в Google Play (баннер не отображается) = https://play.google.com/store/apps/details?id=com.be.app.a100interestingfacts
Я также связываю свой Admob с Google Play.
Мой MainActivity.java
:
public class MainActivity extends AppCompatActivity {
private AdView mAdView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MobileAds.initialize(this, "ca-app-pub-2210729996978406~9750335544"); //I add this
mAdView = findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();//I add this
mAdView.loadAd(adRequest);
}
}
Мой activity_main.xml
:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F4FA58"
tools:context=".MainActivity">
.
.
.
.
<com.google.android.gms.ads.AdView //I add this
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="LARGE_BANNER"
ads:adUnitId="ca-app-pub-2310839996878406/9126800798">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
Мой build.gradle(project)
:
.
.
.
allprojects {
repositories {
google()
jcenter()
maven {
url "https://maven.google.com" //I add this
}
}
}
.
.
.
.
Мой build.gradle(Module)
:
.
.
.
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.google.android.gms:play-services-ads:15.0.0' //I add this
}
.
.
.