hanggrian/socialview

implementation error

Closed this issue · 3 comments

Hello there so iwas trying to implementation "com.hendraanggrian.appcompat:socialview:0.2" but igot an error
Failed to resolve: com.hendraanggrian.appcompat:socialview-commons:0.2
Failed to resolve: com.hendraanggrian.appcompat:socialview:0.2
iwant to fix this error pls

yep i have the same problem

i solved it. All u need to do add this code to build.gradle and synchronize.

allprojects { repositories { jcenter() } }

jcenter is deprecated. What you need to do is allprojects { repositories { maven { url = 'https://s01.oss.sonatype.org/content/repositories/snapshots/' } } } and use version 0.1-SNAPSHOT.

In the future it will be replaced with allprojects { repositories { mavenCentral() } }.