gpt4 book ai didi

android - 将 gradle 依赖项添加到库 aar 包

转载 作者:太空宇宙 更新时间:2023-11-03 11:05:15 29 4
gpt4 key购买 nike

我正在为供应商制作一个库项目,它需要 Android Volley 作为依赖项。我用过这个Create aar file in Android Studio创建 .aar 文件并将其包含在我正在使用的测试项目中 Adding local .aar files to Gradle build using "flatDirs" is not working .该库链接良好,项目编译中没有错误。但是在运行时,测试应用程序崩溃说找不到 Volley

java.lang.NoClassDefFoundError: Failed resolution of: Lcom/android/volley/toolbox/Volley;
Caused by: java.lang.ClassNotFoundException: Didn't find class "com.android.volley.toolbox.Volley" on path: DexPathList[[zip file "/data/app/in.gridsync.acttest-1/base.apk"],nativeLibraryDirectories=[/vendor/lib, /system/lib]]
Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack available

我的库项目的Gradle文件是这样的

    apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.mcxiaoke.volley:library:1.0.19'
}

在测试项目中,gradle 是这样的

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "in.gridsync.acttest"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile project(':openapp-library')
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
}

我假设,当创建 .aar 包时,它会使用并包含它对 Volley 库的依赖。有人可以对此有所了解吗?

最佳答案

据我所知,您必须为 .aar 库添加“@aar”。 jar 文件也不是必需的,它会自行下载。试试这个:

compile 'com.mcxiaoke.volley:library:1.0.19@aar'

关于android - 将 gradle 依赖项添加到库 aar 包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34465099/

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