web-dev-qa-db-ja.com

Android studioでピカソライブラリを追加する方法

このエラーが発生しています。手伝ってください。

     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ファイルのビルドに追加します。しかし、同じエラーが発生します。今何をしますか。私を助けてください。

ピカソライブラリを追加する方法を教えてください。

20
Kartiki

これをbuild.gradleの依存関係に追加します。

enter image description here

dependencies {
 implementation 'com.squareup.picasso:picasso:2.71828'
  ...

最新バージョンは here にあります

インターネットに接続していることを確認してください。 Gradleを同期すると、すべての関連ファイルがプロジェクトに追加されます

ライブラリフォルダを見てください。追加したライブラリがそこにあるはずです。

enter image description here

45

easiest way to add dependence

これがあなたを助けるか、 Ctrl + Alt + Shift + S => [依存関係]タブを選択し、必要なものを見つけます(私の画像を参照)

22
vuhung3990

依存関係にピカソライブラリを追加する

dependencies {
       ...
       implementation 'com.squareup.picasso:picasso:2.71828'
       ...
    }

プロジェクトを同期するレイアウトで1つのイメージビューを作成する

<ImageView
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:id="@+id/imageView"
    Android:layout_alignParentTop="true"
    Android:layout_centerHorizontal="true">
</ImageView>

マニフェストファイルにインターネットアクセス許可を追加する

<uses-permission Android:name="Android.permission.INTERNET" />

// ImageViewの初期化

ImageView imageView = (ImageView) findViewById(R.id.imageView);

//下のURLからimageViewに画像をロードします

Picasso.get()
   .load("YOUR IMAGE URL HERE")
   .into(imageView);
6
Manikanta Reddy