This needed refactoring in how the piasy BigImageViewer lib is handled
as newer versions of that bumped their AGP. We can now use the native
support through maven-publish-plugin and just need to override some of
the publishing variables.
The non-minified version looks like this:
```
apply plugin: 'maven-publish'
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.piasy'
version = releaseVersionName
}
}
}
}
```
See also: https://developer.android.com/studio/build/maven-publish-plugin