我是Android Studio的新手。 我如何在< JDK >文件夹下面的外部库中添加几个jar文件?


当前回答

一个简单的方法添加Jar文件Android Studio步骤:

复制并粘贴jar文件到项目的libs文件夹。 从文件菜单点击文件->项目结构(CTRL + SHIFT + ALT + S在Windows/Linux,⌘+;Mac OS X)。 在左侧面板上选择模块-> Dependencies选项卡。 添加……→项目库→附加Jar。

其他回答

将jar文件添加到app/libs文件夹中。然后右键单击jar文件并单击“添加为库”。

如果没有libs文件夹,您可以创建它。点击“Android”组合框,并将其更改为“项目”

从这里,你可以右键单击目录树中的“apps”,然后点击“New”=>“directory”

如果有人正在寻找另一个解决方案,而没有实际将jar文件复制到项目目录中,例如在多个项目中使用jar时: 构建开放。Gradle和add

def myJarFolder = 'C:/Path/To/My/Jars'

[...]

dependencies {
    [...]
    compile fileTree(dir: myJarFolder + '/jar/Sub/Folder/1', include: ['*.jar'])
    compile fileTree(dir: myJarFolder + '/jar/Sub/Folder/2', include: ['*.jar'])
    [...]
}

注意,当然你不必使用myJarFolder变量,我发现它很有用。路径也可以是相对的,例如:../../ path /To/My/Jars。 AndroidStudio 3.0测试

更新: 对于Gradle Plugin > 3.0,使用implementation代替compile:

dependencies {
        [...]
        implementation fileTree(dir: myJarFolder + '/jar/Sub/Folder/1', include: ['*.jar'])
        implementation fileTree(dir: myJarFolder + '/jar/Sub/Folder/2', include: ['*.jar'])
        [...]
    }

在应用程序目录中创建“libs”文件夹,将jar文件复制到libs文件夹中,右键单击Android Studio中的jar文件,并添加为库… 然后打开构建。Gradle并添加这个:

dependencies {
    implementation files('libs/your jar file.jar')
}

在你的android项目中添加一个罐子的“官方方式” 外部库,是在jar中添加依赖项{}节 build.gradle。

如果你做了以上所有的事情,但没有一个奏效,那么还有另外两种可能:

If Android Studio or some other IDE doesn't give red underlined errors in editor but runs in error in the Java Compiler, CHECK YOUR JAR. Your jar may not have a proper Manifest included therefore the compiler doesn't know what the jar can provide/don't know it's package name Maybe it's folder structure is messed up. The folder structure doesn't match with its package name. package a.b.c; should be matching to folder a > folder b > folder c. The package name has some conflict. (Trust me, this happened to me and it took hours to figure it out.)


然而,如果你打算用cordova,这里有一些添加外部罐子的技巧。

“build-extras。Gradle”是更好的管理Gradle文件的方法。

下面是在基于cordova的android项目中管理额外设置的步骤:

添加jar到build-extras.gradle: //其他设置在这里,例如:buildscript{…} ext.postBuildExtras = { //你可能有一些其他的设置,例如:android{…} 依赖关系{ 编译文件(“libs / abc.jar”) } }

(更详细的步骤在这里:扩展cordova gradle文件以包括谷歌服务)

在终端,做:

Cordova构建android

如果你没有看到“添加为库”选项,确保你解压(解压缩)你的文件,使你有mail.jar而不是mail.zip。

然后右键单击你的文件,你可以看到“添加为库”选项。