I freshly deployed an Android library named TypedPreferences. I used it in another Android project for some days. Suddenly, it stopped working - dependencies cannot be f
Looks like the packaging
element of the published POM has the wrong value. It should be aar
, not aar.asc
.
Also, you always can force the type of artifact to download. Just add dependency like:
compile "group:artifact:version@type"
And in your case it will be
compile "info.metadude.android:typed-preferences:1.0.0@aar"
That's it.