英文:
Gradle sync failed: Cause: com.android.utils.StringHelper.appendCapitalized(Ljava/lang/StringBuilder;Ljava/lang/String;)V
问题
我在代码库中没有进行任何操作,但我对下面的错误感到很惊讶。
我已经尝试升级或降级Gradle包装器和Gradle构建工具。
我正在使用Gradle构建工具v3.2.1,Gradle包装器为4.6-all.zip。
注意:其他项目正常运行,我甚至尝试删除了整个代码并克隆了一个新的。
有人可以帮帮我吗?
英文:
I have done nothing with the codebase, and I'm surprised to see the below error.
And I have tried upgrading or downgrading the Gradle wrapper and Gradle build tools.
I'm using Gradle build tools v3.2.1 with Gradle wrapper4.6-all.zip.
Note: Other projects are working fine and even I tried deleted the complete code and cloned a fresh one
Can anyone please help me
答案1
得分: 1
update your gradle file.
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.2.0'
英文:
update your gradle file.
classpath 'com.android.tools.build:gradle:3.5.1'
classpath 'com.google.gms:google-services:4.2.0'
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论