Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试通过 Android Studio 通过 maven 添加 aviary,但我不断收到此错误:
错误:配置项目“:myproj”时出现问题。无法解析配置 ':myproj:_devDebugCompile' 的所有依赖项。找不到 com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350。要求:myproj:myproj:unspecified > myproj.libraries:mylib:unspecified
有一堆相互冲突的库。不得不排除一些。我的配置如下所示:
compile ('com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350') { exclude module: 'hlistview' exclude module: 'support-v4' exclude module: 'commons-io' }
要查看您需要排除的库./gradlew -q dependencies在您的应用程序模块目录中运行并排除所有与您的库冲突的库。
./gradlew -q dependencies