как добавить библиотеку Пикассо в андроид студию

Я получаю эту ошибку, пожалуйста, помогите мне.

     Error:A problem occurred configuring project ':app'.
> Cannot evaluate module picasso-master : Configuration with name 'default' not found.

Сделано до сих пор:

1. download the picaso 

2.unzip the zip folder

 3.Under project section created  one directory called as lib and add the unzip file

4. In settings-gradle

    include ':app'
include ':libs:picasso-master'

   wrote these lines.

5. after that in project structure module dependency  add the picasso library


6. rebuild and clean

7.

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile project(':library:picasso-master')
    compile 'com.squareup.picasso:picasso:2.5.0'
}

Я добавляю эти строки в файл сборки Gradle тоже. но та же ошибка приходит. что мне теперь делать Помогите мне, пожалуйста.

Подскажите, пожалуйста, как я могу добавить библиотеку Пикассо?

Ответы на вопрос(3)

Ваш ответ на вопрос