In my Gradle script I'm using some library dependecies like
implementation "com.example:myLibrary:+"
I now want to display in the app which version acutally is used. The easiest way for this would be using a BuildConfigField
which holds the version information. But how can I find out which version gradle acutally downloads. Is there a way to determine this in gradle
or do I have to extract it from the path as described here?