我正在尝试使用新的Android Studio,但我似乎不能让它正常工作。
我正在使用Gson库来序列化/反序列化json对象。但是这个库不知何故没有包含在构建中。
我用MainActivity创建了一个新项目。
复制gson-2.2.3.jar到/libs文件夹中,并将其添加为库依赖项(右键单击->添加为库)。这包括android studio中的jar,因此可以从源文件中引用它。
当我尝试运行项目时,它无法编译,所以我添加:
compile files('libs/gson-2.2.3.jar')
到de .gradle文件中的依赖项。之后,它正确编译,但当运行应用程序时,我得到一个ClassDefNotFoundException。
有人知道我哪里做错了吗?
我已经为同样的事情挣扎了好几个小时,试图让Gson罐子工作。我终于破解了——下面是我采取的步骤:
Put the Gson jar (in my case, gson-2.2.4.jar) into the libs folder
Right click it and hit 'Add as library'
Ensure that compile files('libs/gson-2.2.4.jar') is in your build.gradle file (or compile fileTree(dir: 'libs', include: '*.jar') if you are using many jar files)
Edit : Use implementation files('libs/gson-2.2.4.jar') (or implementation fileTree(dir: 'libs', include: '*.jar')) in Android Studio 3.0+
Do a clean build (you can probably do this fine in Android Studio, but to make sure I navigated in a terminal to the root folder of my app and typed gradlew clean. I'm on Mac OS X, the command might be different on your system
在我完成以上四项之后,它开始正常工作。我认为“添加为库”步骤是我之前错过的一个步骤,直到我清理它它才开始工作。
[编辑-添加构建Gradle步骤也是必要的,正如其他人指出的那样]
我的答案基本上是收集了上面提供的一些正确但不完整的答案。
Open build.gradle
Add the following:
dependencies {
compile 'com.android.support:appcompat-v7:19.+'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.code.gson:gson:2.3'
}
This will allow support for two different ways of adding dependencies. The compile fileTree(dir: 'libs', include: ['*.jar']) (as @Binod mentioned) tells the compiler to look under the folder libs for ANY jar. It is a good practice to create such a folder 'libs' which will contain the jar packages that our application needs to use.
但这也将允许对Maven依赖项的支持。编译'com.google.code.gson:gson:2.3'(正如@saneryee所提到的)是另一种推荐的方法,可以在中央远程存储库中添加依赖项,而不是在我们的/libs“本地存储库”中。它基本上是告诉gradle寻找该包的版本,并告诉编译器在编译项目时考虑它(在类路径中)
PS:我两者都用
有两种方法可以做到这一点。
第一个简单的方法。
复制.jar文件到剪贴板,然后将其添加到libs文件夹。要查看项目中的libs文件夹,请从文件夹上方的组合框中选择项目。
然后右键单击.jar文件,单击“添加为库”,然后选择一个模块,然后确定。
您可以在构建中看到.jar文件。Gradle文件在依赖块。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:21.0.3'
implementation project(':okhttp-2.0.0')
implementation 'com.google.code.gson:gson:2.3.1'
}
第二种方法是:我们可以将.jar文件作为.jar模块导入到模块中,然后将该模块添加到我们想要的任何模块中。
导入模块——>选择你的。jar文件——>而不是导入一个。jar文件——
然后按CTRL+ALT+SHIFT+S——> project sturure——>选择你想要添加一个jar的模块——>Dependencendies——> module Dependency。构建。模块的Gradle会自动更新。
对于更新的Android 1.0.2,以下内容已经在您的构建中。gradle文件
implementation fileTree(include: ['*.jar'], dir: 'libs')
将库jar添加到你的libs文件夹->右键单击库->单击添加为库->它会要求你为项目添加它->选择你的项目->单击确定
下面的行会自动添加到build.gradle中
implementation files('libs/android-query.jar')
这对我很有帮助。没有别的要求了。我已经为android演示了另一个第三方库。
我发现Android Studio的依赖管理器非常方便和强大的管理第三方依赖(如这里提到的gson)。提供一步一步的指导,这对我来说是有效的(注:这些步骤是针对Android Studio 1.6和Windows平台上的后续版本进行测试的)。
步骤1:
点击“Build > Edit Libraries and Dependencies…”,打开对话框“Project Structure”
步骤2:
选择“app”,然后选择“Dependencies”选项卡。然后选择“Add > 1 Library dependency”
步骤3:
弹出“选择库依赖项”对话框,在搜索中指定“gson”,然后按“搜索按钮”
步骤4:
所需的依赖项将显示在搜索列表中,选择com.google.code.gson:gson:2.7(这是我写答案时的最新版本),按OK
在“项目结构”对话框中按OK。Gradle会相应地更新你的构建脚本。
希望这能有所帮助:)
Android Studio 3+:
你只需要简单地将jar文件复制到app文件夹下的libs文件夹即可。
...myproject \ app \ libs myfile . jar
然后从“项目”窗口的下拉菜单中选择“项目文件”,右键单击该项目,选择“同步”以在“项目文件”中查看该文件。它会自动在gradle文件(Module:app)中添加依赖项。
dependencies {
...
implementation files('libs/myfile.jar')
这里有另一个解决方案:
转到Project Files视图(从下拉菜单中选择Project Files)。
选择新…在app下面创建一个名为libs的文件夹。
打开文件资源管理器,复制并粘贴jar文件到libs文件夹中。
在Android Studio中,右键单击jar文件,并选择Add as a Library…从弹出式菜单。
你应该在gradle文件的依赖项列表中看到这个文件:
dependencies {
...
implementation files('libs/myfile.jar')
}
打开你的java文件,在那里添加import语句:
import com.xxx.xxx;
在Kotlin DSL (build.gradle.kts)中,有多种方法可以做到这一点。
我们假设库文件在project/app/libs/目录下。
Method 1
implementation(
files(
"libs/library-1.jar",
"libs/library-2.jar",
"$rootDir/foo/my-common-library.jar"
)
)
Method 2
implementation(
fileTree("libs/") {
// You can add as many include or exclude calls as you want
include("*.jar")
include("another-library.aar") // aar is similar to jar
exclude("bad-library.jar")
}
)
Method 3
implementation(
fileTree(
// Here, instead of repeating include or exclude, assign a list
"dir" to "libs/",
"include" to "*.jar",
"exclude" to listOf("bad-library-1.jar", "bad-library-2.jar")
)
)
Method 4
repositories {
flatDir {
dirs("libs/", "lib/")
}
}
dependencies {
// Could also write implementation(":jsoup:1.4.13")
implementation("org.jsoup:jsoup:1.4.13")
// NOTE: Add @aar suffix for AAR files
implementation("ir.mahozad.android:pie-chart:0.7.0@aar")
}
您可以在包含和排除调用中使用Ant模式,如上所示。
有关这方面的更多信息,请参阅Gradle文档。
感谢这篇文章和这篇文章提供了有用的答案。