INFO: API ‘variant.getJavaCompile()’ is obsolete and has been replaced with ‘variant.getJavaCompileProvider()’.
in terminal. Go to view -> tool windows -> Terminal in Android Studio.
gradlew sync -Pandroid.debug.obsoleteApi=true
可以看到具体的错误信息。
搜索了一段时间后,我发现这个警告是由于使用了最新版本的google-services plugin(版本4.3.0)引起的。顺便说一下,我在我的应用程序中使用这个插件来实现Firebase功能。我所做的只是在build.gradle(项目)级别文件中降级了buildscript中的google-services插件:
buildscript{
dependencies {
// From =>
classpath 'com.google.gms:google-services:4.3.0'
// To =>
classpath 'com.google.gms:google-services:4.2.0'
}
}
或者修改 Google Services version 在你的 build.gradle 中
:
dependencies {
classpath 'com.google.gms:google-services:4.2.0'
}
书到用时方恨少,纸上得来终觉浅。共勉。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/114985.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...