androidaviary

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:

Error:A problem occurred configuring project ':myproj'. Could not resolve all dependencies for configuration ':myproj:_devDebugCompile'. Could not find com.aviary.android.feather.sdk:aviary-sdk:3.4.3.350. Required by: myproj:myproj:unspecified > myproj.libraries:mylib:unspecified


Solution

  • 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.