Right now, the library depends upon appcompat-v7. However, the library uses nothing out of appcompat-v7. It does use classes from support-annotations, but that's it, as far as I can tell.
The workaround is to have the following in Gradle, to avoid unnecessary code and resources (in situations where the hosting app itself is not using appcompat-v7):
Right now, the library depends upon
appcompat-v7
. However, the library uses nothing out ofappcompat-v7
. It does use classes fromsupport-annotations
, but that's it, as far as I can tell.The workaround is to have the following in Gradle, to avoid unnecessary code and resources (in situations where the hosting app itself is not using
appcompat-v7
):Thanks for considering this!