android - Failed to resolved : compile 'com.github.ParkSangGwon:TedPicker:v1.0.10'? -
i trying add third party library in gradle. showing failed resolve:
dependencies { compile filetree(dir: 'libs', include: ['*.jar']) androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:cardview-v7:25.0.1' compile 'com.android.support:design:25.0.1' compile 'com.github.parksanggwon:tedpicker:v1.0.10' //compile 'gun0912.ted:tedbottompicker:1.0.12' testcompile 'junit:junit:4.12' }
have added
repositories { maven { url "https://repo.commonsware.com.s3.amazonaws.com" } maven { url "https://jitpack.io" } }
to repositories it's said on library page?
Comments
Post a Comment