1

我在 Android Studio 中实现了一个名为“proximity”的库项目并生成了一个“.aar”。这个 aar 我已经作为一个模块添加到一个新的测试项目中,如下所述:https ://stackoverflow.com/a/24894387/2791503 此外,我将该模块作为具有传递标志的依赖项包括在内,因为它已被提议这里:https : //stackoverflow.com/a/25730092/2791503 这可能是新TestProject的gradle文件:

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   testCompile 'junit:junit:4.12'
   compile 'com.android.support:appcompat-v7:23.1.1'
   compile(project(':proximity')) {
    transitive=true
}

仍然当我启动应用程序时,它告诉我它找不到 Google Location API 的类,这是我的库模块的依赖项。

java.lang.NoClassDefFoundError:解析失败:Lcom/google/android/gms/common/api/GoogleApiClient$Builder;

如何强制 gradle 包含我的库模块的那些传递依赖项?

编辑:这是原始库项目的 gradle 构建文件:

dependencies {
   //integration tests
   androidTestCompile 'com.android.support.test:runner:0.4.1'
   // Set this dependency to use JUnit 4 rules
   androidTestCompile 'com.android.support.test:rules:0.4.1'
   // Set this dependency to build and run Espresso tests
   androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.1'
   // Set this dependency to build and run UI Automator tests
   androidTestCompile 'com.android.support.test.uiautomator:uiautomator-  v18:2.1.2'
   androidTestCompile 'com.android.support:support-annotations:23.1.1'

   //local unit testing
   testCompile 'junit:junit:4.1'

   compile fileTree(include: ['*.jar'], dir: 'libs')
   compile 'com.android.support:appcompat-v7:23.1.1'
   //estimote sdk
   compile 'com.estimote:sdk:0.9.4@aar'
   //google location api(GPS)
   compile 'com.google.android.gms:play-services-location:8.4.0'
   //Google Guave Java Util
   compile 'com.google.guava:guava:18.0'
   //custom BeSpoon library for android
   compile project(':bespoonlibrary')
}

这就是将库作为引用 aar 的模块导入后 gradle 构建文件的外观:

configurations.create("default")
artifacts.add("default", file('app-release.aar'))
4

1 回答 1

0

所以我找到了一个适合我的解决方案,但这仍然不是我所希望的......所以让我知道是否有人有更好的解决方案。无论如何,这可能会对某人有所帮助:我有两个库,一个外部库,一个库项目本身和一个内部 libaray,它是外部库的依赖项。此外,每个库都有自己的依赖项,例如内部库引用 google-location-service。

我尝试gradlew assemble了生成外部库的 *.aar 文件。但是 aar 中只有外部库,但没有内部库和所有其他依赖项。这个讨论说到目前为止还没有办法处理这个问题: 如何导出 AAR 包括它的依赖项?

没有所有依赖,使用这个 aar 是没有意义的……所以我不得不找到另一种方法。在应包含外部库的 Android TestProject 中,单击File->Import Module->"Select the external library"->Finish所有依赖项,包括内部库。

于 2016-02-10T11:53:25.267 回答