本文介绍了Gradle错误:意外输入:android.gms:play-services的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在运行时在Gradle中显示错误:

In RunTime show error in Gradle the error:

错误:任务':app:transformClassesWithInstantRunForDebug'的执行失败.

Error:Execution failed for task ':app:transformClassesWithInstantRunForDebug'.

分级项目级别:

dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.1.0'

    }

分级应用程序级别:

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

推荐答案

当我添加此行时,问题已解决:

When I Add this line the problem solved:

        MobileAds.initialize(getApplicationContext(), "ca-app-pub-xxxxxxxxxxxxx");

感谢所有回应.

这篇关于Gradle错误:意外输入:android.gms:play-services的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 11:32