简体   繁体   English

Aviary与Android Studio集成:找不到com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350

[英]Aviary integration with Android Studio: Could not find com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350

I'm trying to add aviary via maven through Android Studio but I keep getting this error: 我正试图通过Android Studio通过maven添加鸟舍,但我不断收到此错误:

Error:A problem occurred configuring project ':myproj'. 错误:配置项目':myproj'时出现问题。 Could not resolve all dependencies for configuration ':myproj:_devDebugCompile'. 无法解析配置':myproj:_devDebugCompile'的所有依赖项。 Could not find com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350. 找不到com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350。 Required by: myproj:myproj:unspecified > myproj.libraries:mylib:unspecified 要求:myproj:myproj:unspecified> myproj.libraries:mylib:unspecified

Had a bunch of conflicting libraries. 有一堆冲突的图书馆。 Had to exclude a few. 不得不排除一些。 My configuration looks like this: 我的配置如下所示:

compile ('com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350') {
        exclude module: 'hlistview'
        exclude module: 'support-v4'
        exclude module: 'commons-io'
    }

To see what libraries you need to exclude run ./gradlew -q dependencies in your app module directory and exclude all libraries that conflict with yours. 要查看需要排除的库,请在app模块目录中运行./gradlew -q dependencies ,并排除与您的库冲突的所有库。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM