过去两天我试图找到解决这个问题的方法,但没有运气.
我想尝试包含GSON lib.进入我的android项目.
现在在我的build.gradle中,我有以下内容:
// Top-level build file where you can add configuration options common to all sub-projects/modules. dependencies { compile files('libs/gson-2.2.4.jar') }
我也右键单击了gson-2.2.4.jar并将其添加为lib.
当我编译时,我得到以下错误:
Gradle: A problem occurred evaluating root project 'noteBox-android'. > Could not find method compile() for arguments [directory 'libs'] on root project 'noteBox-android'.
谁能帮我这个?
如果您需要更多信息,请告诉我!
解决方法
这个问题的答案可能会帮助您正确导入您的gson库并避免任何编译/链接问题:
Android Studio – Importing external Library/Jar.另一个相关链接:
Android Studio: Add jar as library?和接受的答案.两个答案都说同样的话.添加/导入jar文件并编辑build.gradle文件后,gradlew清理.
HTH.
编辑:有两个build.gradle文件.您应该编辑项目文件夹下的build.gradle而不是project-root文件夹下的build.gradle.