提问人:Aryan Tiwari 提问时间:10/7/2022 更新时间:2/9/2023 访问量:429
不支持在任务“:app:processDebugGoogleServices”完成之前查询 provider(interface java.util.Set) 的映射值
Querying the mapped value of provider(interface java.util.Set) before task ':app:processDebugGoogleServices' has completed is not supported
答:
1赞
Code on the Rocks
2/9/2023
#1
在 android/build.gradle 中,将 google-services 类路径更新为 4.3.14:
dependencies {
...
classpath 'com.google.gms:google-services:4.3.14'
}
评论