Реклама Admob не показывается после изменения названия пакета - PullRequest
0 голосов
/ 29 марта 2020

Я разрабатываю новую версию для своего приложения с именем тестового пакета, чтобы не раздражать текущих пользователей.

Показывались нативные объявления Admob, но как только я изменил имя пакета приложения на текущий PN, который Я использую в Play Store, объявления больше не показываются, и я получаю это сообщение об ошибке:

the previous native ad failed to load. attempting to load another

PS: объявления не ограничены для моего приложения PS 2: admob связан с моей учетной записью firebase

Мои зависимости:

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.palette:palette:1.0.0'
    implementation 'com.google.android.material:material:1.0.0' // Crash when updating
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'

    testImplementation 'junit:junit:4.12'
    //implementation 'de.hdodenhof:circleimageview:3.0.1'
    implementation 'com.mikhaellopez:circularimageview:3.2.0'          // circle image view

    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation "com.leinardi.android:speed-dial:2.0.1"
    implementation 'androidx.cardview:cardview:1.0.0'

    implementation 'com.android.volley:volley:1.1.1'

    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'org.jsoup:jsoup:1.8.1'

    implementation 'com.facebook.shimmer:shimmer:0.1.0@aar'


    // Firebase login
    implementation 'com.firebaseui:firebase-ui-auth:6.2.0'
    implementation 'com.facebook.android:facebook-android-sdk:5.15.1'


    implementation 'com.google.firebase:firebase-analytics:17.2.3'          // Firebase Analytics
    implementation 'com.google.firebase:firebase-crashlytics:17.0.0-beta02'
    // Add the Firebase SDK for Crashlytics.
    //implementation 'com.google.firebase:firebase-perf:19.0.5'                 // Add the dependency for the Performance Monitoring library


    implementation 'com.google.firebase:firebase-messaging:20.1.3'          // Other Firebase
    implementation 'com.github.guy-4444:SmartRateUsDialog-Android:1.00.08' // Rate us

    implementation 'com.google.android.gms:play-services-ads:19.0.1'        // ads
    implementation project(':nativetemplates')                              // nativetemplates

}

Мой gradle

buildscript {
    repositories {
        mavenLocal()
        mavenCentral()
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.1'
        classpath 'com.google.gms:google-services:4.3.3'
        // Add the Crashlytics Gradle plugin.
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.0.0-beta03'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        google()
        jcenter()
        maven { url 'https://jitpack.io' }

    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...