I used this dependency on a few of my projects a few years back and recently needed it back. So I also came up with the same issue which Library is not syncing
Maybe this is because, this dependency is only hosted in jcenter(). And as it is not getting added as a repository source, the dependency is not getting downloaded.
What I did to resolve my Issue was I added jcenter() above the mavencentral() in the below shown places in my settings.gradle (Project Settings) which was written in Groovy.
By doing this, it will change the priority to jcenter() before mavencentral()
I used this dependency on a few of my projects a few years back and recently needed it back. So I also came up with the same issue which Library is not syncing
Maybe this is because, this dependency is only hosted in jcenter(). And as it is not getting added as a repository source, the dependency is not getting downloaded.
What I did to resolve my Issue was I added jcenter() above the mavencentral() in the below shown places in my settings.gradle (Project Settings) which was written in Groovy.
By doing this, it will change the priority to jcenter() before mavencentral()