2016-10-10 139 views
0

所示。這是我的項目生成級代碼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' 

}

測試廣告在showimg了仿真器,但沒有廣告在真正的device.please幫我

我跟隨以下鏈接,以獲得廣告 https://firebase.google.com/docs/admob/android/quick-start

我也跟着下面的鏈接設置火力 https://firebase.google.com/docs/android/setup

+0

親切分享日誌乳清你在實際設備上運行它。 –

+0

我無法看到我的設備,當我點擊運行method.I手動安裝apk文件到設備 –

回答

0

你在項目中的廣告暴民創建特定類別的使用廣告單元ID。

因爲您已經在您的項目中創建了橫幅廣告單元 - 您將在列表中看到橫幅廣告單元ID,使用該廣告單元ID(您會在創建橫幅廣告時看到廣告單元ID低於您的標題)。

欲瞭解更多信息,請參閱https://support.google.com/admob/answer/3052638你會得到我想解釋的。

相關問題