gpt4 book ai didi

android - 如何在Android的主项目中包含库项目中使用的aar文件

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:53:59 25 4
gpt4 key购买 nike

我的项目包括一些图书馆项目。库正在使用一些 aar 文件,其依赖项已在模块中定义:gradle 文件。我在将这个库包含在我的项目中时遇到问题。

如果我在 app->lib 中保留重复的 aar 文件并在 app->gradle 文件中定义它们的依赖关系,那么就没有问题。但这不应该是正确的方法。

请在下面找到错误:

配置项目“:app”时出现问题。

Could not resolve all dependencies for configuration ':app:_qaDebugCompile'. Could not find :api-release:. Searched in the following locations:
https://jcenter.bintray.com//api-release//api-release-.pom
https://jcenter.bintray.com//api-release//api-release-.aar
file:/D:/sample/sample-android-app/app/libs/api-release-.aar
file:/D:/sample/sample-android-app/app/libs/api-release.aar
Required by:
sample-android-app:app:unspecified > sample-android-app:misnapworkflow:unspecified

请在下面找到项目结构:

sample
|-- app
|-- misnapworkflow
|
|-- lib
|-- api-release.aar

in app gradle file following has been mentioned to include the project

dependencies { compile project(':misnapworkflow') }

请在下面找到 misnapworkflow gradle 文件:

apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 10
targetSdkVersion 23
consumerProguardFiles 'proguard-rules.pro'
}

lintOptions {
abortOnError false
}

// Publish both debug and release libraries
publishNonDefault true

buildTypes {
debug {
debuggable true
jniDebuggable true
minifyEnabled false
shrinkResources false
testCoverageEnabled true
}

release {
signingConfig signingConfigs.debug
debuggable false
jniDebuggable false
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

task grantPermissions(type: Exec, dependsOn: 'installDebugTest') {
logger.warn('Granting permissions...')
commandLine "adb shell pm grant com.miteksystems.misnap.misnapworkflow.test android.permission.WRITE_EXTERNAL_STORAGE".split(' ')
commandLine "adb shell pm grant com.miteksystems.misnap.misnapworkflow.test android.permission.CAMERA".split(' ')
logger.warn('Permissions granted.')
}

tasks.whenTaskAdded { task ->
if (task.name.startsWith('connected')
|| task.name.startsWith('create')) {
task.dependsOn grantPermissions
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.0.1'

// Add dependency for MiSnap external API
compile(name: 'api-release', ext: 'aar')

// Add dependency for MiSnap
compile(name: 'misnap-release', ext: 'aar') {
exclude module: 'appcompat-v7'
}

// Eventbus dependency
compile 'de.greenrobot:eventbus:2.4.0'

// Add OPTIONAL dependency for Manatee
compile(name: 'manatee-release', ext: 'aar')

compile(name: 'cardio-release', ext: 'aar')
}

repositories {
flatDir {
dirs 'libs'
}
}

最佳答案

aar 文件不包含 transitive dependencies 并且没有描述库使用的依赖项的 pom 文件。

这意味着,如果您使用 flatDir 存储库导入 aar 文件,您还必须在项目中指定依赖项

您应该使用ma​​ven 存储库(您必须在私有(private)或公共(public)maven 存储库中发布该库),您不会遇到同样的问题。
在这种情况下,gradle 使用包含依赖项列表的 pom 文件下载依赖项。

关于android - 如何在Android的主项目中包含库项目中使用的aar文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37936092/

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