gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 19:26:44 35 4
gpt4 key购买 nike

我想包括 zxcvbn在我现有的 android 项目中,但无法执行。已经尝试了
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

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

最佳答案

您应该按照以下步骤为您的 android 项目导入新模块

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

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

然后您应该添加一个新模块,即您的(zxcvbn 库)到您的项目依赖项中以执行此操作

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

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

关于java - 如何在 Android Studio 的现有 Android 项目中包含 java 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41158468/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com