在Android Studio中添加广告

时间:2016-12-05 13:15:37

标签: android firebase admob

我是Android开发的新手,想了解如何在Android应用中添加广告。我研究了各种Firebase和Android开发者链接,最后添加了代码。

ActivityMain.XML:

<com.google.android.gms.ads.AdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_alignParentBottom="true"
    ads:adSize="BANNER"
    ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>

的AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.package.name">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

应用级gradle:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "my.ID"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 2
        versionName "2"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.android.support:support-v4:23.3.0'
    compile 'com.android.support:design:23.3.0'
    compile 'com.google.firebase:firebase-core:10.0.1'
    compile 'com.google.android.gms:play-services:10.0.1'
    compile 'com.google.android.gms:play-services-ads:10.0.1'
    compile 'com.android.support:multidex:1.0.0'
}
apply plugin: 'com.google.gms.google-services'

项目级build.gradle:

// 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:3.0.0'

        // 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
}

的strings.xml:

<string name="banner_ad_unit_id">AppID from AdMob</string>

MainActivity.JAVA:

MobileAds.initialize(getApplicationContext(), "ca-app-pub-APPID from ADMob");

AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);

我有什么遗失的东西吗?当我将广告作为Play商店中已发布应用的更新发布时,我是否能够看到广告?此外,Admob将如何付钱给我?

运行应用后没有错误。

谢谢, Kvaibhav01。

更新: 我尝试在开发者控制台中发布app-release.apk文件,并说:

  

您上传了使用其他证书签名的APK   你以前的APK。您必须使用相同的证书。

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

  

您上传了使用其他证书签名的APK到之前的APK。您必须使用相同的证书。   如何解决这个问题?

我搜索other StackOverflow questions并且知道上述查询的答案只有一个。也就是说, APK-release文件必须使用相同的私钥或您称之为KeyStore的方式进行签名。(Java KeyStore更具体。)

我犯的错误是我不小心删除了原来的KeyStore文件。现在,如果我使用新的KeyStore上传更新的APK,Google Developer Console将无法将其识别为已有应用的更新。相反,它假设您正在上传新应用的APK。这就是你得到上述错误的原因。即使更新versionCode错误仍然存​​在。

您可以在此处详细阅读解决方案:https://stackoverflow.com/a/26296942/3647180