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


当前回答

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

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

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

其他回答

基于GUI的方法是在项目中添加一个额外的模块。

从“文件”菜单中选择“项目结构”并单击绿色部分 左上角的加号图标。 弹出新的Module对话框 从手机和平板电脑应用程序组中选择“Import JAR or AAR package”选项,然后单击下一步。 按照以下步骤创建一个包含JAR文件的新模块。 单击与主项目相对应的条目,并选择依赖项选项卡。 向步骤4中创建的模块添加依赖项。

最后一条建议。确保您包含的JAR文件最多是用JDK 1.7构建的。关于“com.android.dx.cf.iface”错误消息的许多问题。错误的类文件magic (cafebabe)或version(0034.0000)"根直接到这个:0。

将JAR放在app/libs和app/build中。Gradle在依赖项部分添加:

implementation fileTree(dir: 'libs', include: ['*.jar'])

请在build.gradle中提供jar文件位置

implementation fileTree(dir: '<DirName>', include: ['*.jar'])

例子:

implementation fileTree(dir: 'C:\Downloads', include: ['*.jar'])

添加单个jar文件

implementation files('libs/foo.jar')

注意: Compile在最新的gradle中已弃用,因此改用implementation。

解析jar的例子…

从项目视图中添加jar到libs文件夹,如果不存在则创建lib文件夹

复制所有的罐子…

向gradle....添加库在构建。Gradle文件:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile 'com.android.support:design:23.0.0'
    compile 'com.android.support:percent:23.0.0'
    compile 'com.parse.bolts:bolts-android:1.+'
    compile fileTree(dir: 'libs', include: 'Parse-*.jar’)
}

为添加lib文件夹的所有jar…将Parse-*.jar更改为*.jar

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

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