文件名或扩展名太长

文件名或扩展名太长

本文介绍了inappmessaging-display:17.0.0'CreateProcess error = 206,文件名或扩展名太长的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我将
实施'com.google.firebase:firebase-inappmessaging-display:17.0.0'添加到我的gradle文件时,Android Studio无法生成apk,相反它给出了这个错误:

When I addimplementation 'com.google.firebase:firebase-inappmessaging-display:17.0.0' to my gradle file, Android Studio cannot generate apk, instead it gives this error:

任何帮助都会非常感激。谢谢。

Any help would be much appreciated guys. Thanks.

推荐答案

我不得不删除这两个库

implementation 'com.google.android.gms:play-services-auth:16.0.0'

另外,当你使用Picasso库时我发现它崩溃了,你可能想要降级或删除它。它已经安装在inappmessaging库中

Also, I found it crashes when you are using Picasso library, you might want to downgrade it or remove it all. it is already installed in the inappmessaging library

implementation 'com.squareup.picasso:picasso:2.71828'

别忘了更改

Picasso.get() Picasso.with(getContext)

现在它建立良好...虽然我的回答需要你们更多的研究......

Now it builds fine... Though my answer needs more research from you guys...

这篇关于inappmessaging-display:17.0.0'CreateProcess error = 206,文件名或扩展名太长的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 08:30