PokerWu
PokerWu

Reputation: 23

Failed to find:com.android.support:design:22.2.0

I used support design library in my project,but there is a error that it is not found.My android Studio has updated Android Support Library 22.2

compile 'com.android.support:design:22.2.0'

this is my first time use of support design library.can somebody help me?

Upvotes: 1

Views: 5376

Answers (3)

Shashank
Shashank

Reputation: 36

You need to update the android support Repository in the SDK manager . Also the Design Library depends on the Support v4 and AppCompat Support Libraries.

Reference: http://android-developers.blogspot.in/2015/05/android-design-support-library.html

Upvotes: 0

henok
henok

Reputation: 894

I also suffered from this error, the solution was to open the android sdk and from extras install android support repository. but on the most recent version android support repository does not exist you have to install local maven repository support library. i hope this will help you.

Upvotes: 0

Sergey Vakulenko
Sergey Vakulenko

Reputation: 1667

Jared Burrows is right, need update SDK ( support library )

Upvotes: 2

Related Questions