Android studio 更新应用程序版本后,我的Interstitual无法加载。它仍然显示为以前的版本

Android studio 更新应用程序版本后,我的Interstitual无法加载。它仍然显示为以前的版本,android-studio,Android Studio,在我更新我的应用程序版本代码后,中间文件无法加载。我想尽一切办法把他们弄回来,但都失败了。任何可能有解决方案的人。 这是我的毕业代码 我没有对主活动和xml活动进行任何更改 梯度锉 apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.christmasloans.christmasloans_quickfe

在我更新我的应用程序版本代码后,中间文件无法加载。我想尽一切办法把他们弄回来,但都失败了。任何可能有解决方案的人。 这是我的毕业代码

我没有对主活动和xml活动进行任何更改

梯度锉

apply plugin: 'com.android.application'
android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.christmasloans.christmasloans_quickfestiveloans"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 5
        versionName "5.0"
        testInstrumentationRunner
        "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'),
            'proguard-rules.pro'
        }
    }
}
dependencies {
    implementation 'com.android.support:appcompat-v7:26.0.0'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-
    core:3.0.2'
    compile 'com.google.gms:google-services:3.2.1'
    compile 'com.google.firebase:firebase-ads:10.0.1'
}
请检查代码,并告诉我哪里可能会弄乱我的代码