如何在Android Studio中的现有Android项目中包含java库

时间:2016-12-15 07:16:27

标签: java android android-studio android-library

我想在我现有的Android项目中包含zxcvbn但无法执行此操作。 已经尝试了 How to import existing java project into android studio?
Android Studio: add project as library
Adding external Android and Java projects to Android projects in Android Studio

但没有运气。根据我的项目要求,我不会使用'编译com.nulab-inc:zxcvbn:1.2.2' ,因为我需要在我的项目中使用源代码。

我的build.gradle

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion '24.0.3'

    defaultConfig {
        applicationId "xx.xxx.xx"
        minSdkVersion 14
        targetSdkVersion 24

        // Enabling multidex support.
        multiDexEnabled true


    }

    dexOptions {

        javaMaxHeapSize "4g"
    }
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
    lintOptions {
        abortOnError false
    }
    productFlavors {
    }
}
repositories {
    mavenCentral()
    maven { url 'http://guardian.github.com/maven/repo-releases' }
}
dependencies {
    compile files('libs/xx-3.0.2.jar')
    compile files('libs/xx-android-sdk-1.6.3.jar')

    compile project(':utilities')

    compile project(path: ':common')
    compile project(':common')

    compile 'com.google.http-client:google-http-client-gson:1.19.0'
    compile 'com.google.code.gson:gson:2.4'
    compile 'com.google.android.gms:play-services-base:9.0.2'
    compile 'com.google.android.gms:play-services-analytics:9.0.2'
    compile 'com.google.android.gms:play-services-wearable:9.0.2'
    compile 'com.google.android.gms:play-services-auth:9.0.2'
    compile 'com.google.apis:google-api-services-drive:v2-rev164-1.20.0'
    compile 'com.android.support:multidex:1.0.1'
    compile 'com.xx.xx:xx:1.2.2'
    compile 'com.x.x:x-compiler:1.2.2'
    compile 'com.x.x:x-v7:24.0.0'
    compile 'com.android.support:cardview-v7:24.0.0'
    compile 'com.android.support:appcompat-v7:24.0.0'
    compile 'com.android.support:cardview-v7:24.0.0'
    compile 'com.google.android.gms:play-services-appindexing:9.0.2'
}

android {
    useLibrary 'org.apache.http.legacy'
}

configurations {
    all*.exclude group: 'com.google.guava', module: 'guava-jdk5'
}

1 个答案:

答案 0 :(得分:2)

您应该为您的Android项目导入新模块,按照以下步骤添加为新模块

 1.Go to file -> New - > Import Module

并选择您的zxcvbn库位置路径,然后单击“完成”。这将为您现有的Android项目添加一个新模块。

然后你应该添加一个新模块i,你的(zxcvbn库)到你的项目依赖项来做那个

 2.Click project structure options - > dependency select your  zxcvbn library and click ok and synch project

现在你的java库包含在你的android项目中

相关问题