gpt4 book ai didi

java - Android Studio 3.0 - "Failed to transform file ' gson-2.2.4.jar' 匹配属性 {artifactType=android-classes}”

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:09:37 25 4
gpt4 key购买 nike

我是 Android Studio 开发的新手,目前正在关注在线 tutorial制作一个信使应用程序。

我已经按照本教程的步骤进行操作,现在需要我下载 Smack API 和 GSON 的库文件,并将 .jar 文件添加到 libs 文件夹在我的项目中。

完成后,我右键单击目录中的文件并单击 Add as library(教程说要执行 Build Path -> Add to Build Path,但这在这个版本的 Android Studio 中似乎不是一个选项。

此时,项目目录侧边栏菜单如下所示: enter image description here

从这里开始,我尝试重建项目但遇到了以下错误:

enter image description here

我根本找不到解决此错误的方法,并且对 Android Studio 的了解不够,无法判断这是 IDE 问题还是包本身问题。我查看了 S/O,但似乎没有一篇文章描述了相同的问题,也没有针对似乎也适用于此的类似问题提供任何解决方案。

如果有人以前遇到过这个问题,或者如果这是一个常见的 Android Studio 问题,你能告诉我如何解决它吗?当我只想继续学习如何为 Android 编写代码时,我感到非常沮丧!

非常感谢任何帮助,提前致谢!

标记

最佳答案

这是导入任何 jar、arr 库的最佳解决方案

enter image description here

allprojects {
repositories {
flatDir {
dirs 'libs'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
....
}

You do not need to add repeatable lines with libs file name.

如果您是 android studio 的新手,您可以通过点击下拉菜单从 android 检查项目结构。

enter image description here

关于java - Android Studio 3.0 - "Failed to transform file ' gson-2.2.4.jar' 匹配属性 {artifactType=android-classes}”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47642490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com