admob广告未在真实设备中显示

时间:2016-10-10 04:13:55

标签: android firebase admob

这是我的项目构建成绩代码

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.3'
        classpath 'com.google.gms:google-services:1.3.0-beta1'


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

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

这是我的应用构建成绩代码

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.2"

defaultConfig {
    applicationId "com.example.personal.numbermania"
    minSdkVersion 10
    targetSdkVersion 24
    versionCode 1
    versionName "1.0"
}
buildTypes {
    debug
            {
                debuggable true
            }
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}


dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.2.1'
    compile 'com.android.support:design:24.2.1'
    compile 'com.google.firebase:firebase-ads:9.6.0'
    compile 'com.google.firebase:firebase-core:9.6.1'

}
apply plugin: 'com.google.gms.google-services'

}

测试广告在模拟器中展示,但实际设备中没有广告。请帮助我

我按照以下链接获取广告 https://firebase.google.com/docs/admob/android/quick-start

我按照以下链接设置了firebase https://firebase.google.com/docs/android/setup

1 个答案:

答案 0 :(得分:0)

使用您在广告群中的项目中创建的特定类别的广告单元ID。

例如,您在项目中创建了横幅广告单元 - 您会看到列表中横幅的广告单元ID使用该广告单元ID(您将在创建横幅广告时看到标题下方的广告单元ID)。

有关更多信息,请参阅https://support.google.com/admob/answer/3052638,您将获得我想要解释的内容。

相关问题