hanggrian / socialview

Android TextView and EditText with hashtag, mention, and hyperlink support
https://hendraanggrian.github.io/socialview/
Apache License 2.0
322 stars 81 forks source link

implementation error #108

Closed troy12x closed 2 years ago

troy12x commented 2 years ago

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

enesarisoy commented 2 years ago

yep i have the same problem

enesarisoy commented 2 years ago

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

allprojects { repositories { jcenter() } }

hanggrian commented 2 years ago

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() } }.