У меня есть приложение в AdMob. Я прочитал и сделал все istruction по firebase и это мой grandle файл:Android AdMob не показывает
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
//compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.google.android.gms:play-services:9.0.0'
//compile 'com.google.android.gms:play-services:9.4.52'
compile files('libs/apache-httpcomponents-httpclient.jar')
compile 'com.google.maps.android:android-maps-utils:0.4.3'
compile 'com.twotoasters.clusterkraf:library:1.0.2'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:cardview-v7:24.0.0-beta1'
compile 'com.mcxiaoke.volley:library:1.0.19'
compile 'com.uncopt:android.justified:1.0'
compile 'com.google.firebase:firebase-core:9.0.0'
compile 'com.google.firebase:firebase-ads:9.0.0'
//compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.facebook.android:facebook-android-sdk:4.5.0'
compile('com.crashlytics.sdk.android:crashlytics:[email protected]') {
transitive = true;
}
compile('com.crashlytics.sdk.android:crashlytics-ndk:[email protected]') {
transitive = true;
}
compile 'com.github.paolorotolo:appintro:4.0.0'
compile 'com.karumi:dexter:2.3.0'
compile 'com.weiwangcn.betterspinner:library-material:1.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.github.clans:fab:1.6.2'
//compile 'com.google.android.gms:play-services:10.0.1'
}
apply plugin: 'com.google.gms.google-services'
я есть добавить на firebase палец печать моего приложения и имя пакета
это код макета:
<LinearLayout
android:layout_width="300dp"
android:layout_height="250dp"
android:layout_gravity="center"
android:id="@+id/adLinear"
android:layout_marginTop="10dp"
android:background="#FFFFFF">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="MEDIUM_RECTANGLE"
ads:adUnitId="@string/banner_ad_unit_id"
android:layout_marginTop="10dp">
</com.google.android.gms.ads.AdView>
</LinearLayout>
Теперь, когда я запускаю приложение, я не вижу реальной рекламы, кроме общей рекламы adMob, в которой говорится о размере моего баннера. В моем коде есть что-то заторможенное или чтобы посмотреть реальную рекламу, которую я должен публиковать в Google Play Store, мое приложение?
Благодаря
Когда я запустить приложение я вижу этот Сходным образом
я хотел бы, если это правильно, и если я должен опубликовать приложение на Google Play, чтобы увидеть реальную advrtise
try adSize = "BANNER" – xbadal
Вам необходимо создать идентификатор живого рекламного блока на сайте admob.com и вставить его в свой AdView (где атрибут 'ads: adUnitId'). –