2016-12-15 73 views
1

现有的Android项目,我想在我现有的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如何包含java库在Android Studio中

,但没有运气。根据我的项目要求,我不会使用'compile 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' 
} 
+0

你需要'mavenCentral( )'如在文件的gradle @ –

+0

一个cricket_007 repostiory:在zxcvbn4j /的build.gradle(https://github.com/nulab/zxcvbn4j/blob/master/build.gradle)mavenCentral()是一提。在我的项目gradle mavenCentral()中也提到。 – nikhil

+0

请出示您的gradle这个文件 - 不要紧,在你挂 –

回答

2

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

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

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

就应该添加一个新的模块I,E您(zxcvbn库)到您的项目依赖这样做

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

现在包含在你的Android项目中的Java库

+0

我已经尝试这一点,但它不能正常工作。当我点zxcvbn文件夹比Android Studio显示消息“请提供模块”,如果我指向build.gradle比它的导入只gradle文件格式不正确。 – nikhil

+0

你应该指向根文件夹不仅没有的build.gradle不是由Android工作室接受的文件 –

+0

... – nikhil

相关问题