Wie man eine Picasso-Bibliothek in Android Studio hinzufügt

Ich erhalte diesen Fehler, bitte helfen Sie mir.

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

Bisher erledigt:

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'
}

i füge diese Zeilen auch in der Build-Gradle-Datei hinzu. aber der selbe fehler kommt. Was soll ich jetzt tun. Bitte hilf mir

Könnten Sie mir bitte sagen, wie ich die Picasso-Bibliothek hinzufüge?

Antworten auf die Frage(6)

Ihre Antwort auf die Frage