小编Kar*_*iki的帖子

如何在android studio中添加picasso库

我收到此错误,请帮帮我.

     Error:A problem occurred configuring project ':app'.
> Cannot evaluate module picasso-master : Configuration with name 'default' not found.
Run Code Online (Sandbox Code Playgroud)

到目前为止:

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
Run Code Online (Sandbox Code Playgroud)

7.

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile project(':library:picasso-master') …
Run Code Online (Sandbox Code Playgroud)

android android-studio picasso

20
推荐指数
3
解决办法
8万
查看次数

标签 统计

android ×1

android-studio ×1

picasso ×1