What went wrong: A problem occurred configuring project ‘:app’. Failed to notify project evaluation listener. No signature of method: org.gradle.api.internal.file.DefaultFilePropertyFactory$DefaultDirectoryVar.getFiles() is applicable for argument types: () values: [] Possible solutions: getAsFile(), getOrElse(java.lang.Object), getOrElse(java.lang.Object), getClass(), getType(), file(java.lang.String) > can’t find tinkerProcessReleaseManifest, you must init tinker plugin first!
解决方式: 回到原来的Gradle设置 查看项目中的build.gradle文件
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath "com.tencent.bugly:tinker-support:1.1.5"
}
将classpath 'com.android.tools.build:gradle:3.5.2’修改为原来的版本[此时已修改] Bugly不和高版本的gradle兼容,基本上都要在3.x版本左右。 还有查看app目录下的gradle文件夹,再打开wrapper文件夹,找到gradle-wrapper.properties文件 将distributionUrl改为原来的版本。
|