* Ignore Visual Studio's cache.
* If only one of (ARTIST, ALBUMARTIST) is present, populate the other.
This is only natural and most applications that implement media library population do this.
* On completion of the queue, rewind to the beginning of the queue, so that a subsequent Play command will play the whole queue again.
* Correct <plurals> values according to the best practices and add a CLDR rules link for translators to look for their language's specific informaiton.
A gradle wrapper script allows a developer to download and use the
correct version of gradle for Vanilla without needing to install it on
their machine. Vanilla uses v1.3.0 of the Android Gradle plugin, which
requires Gradle v2.2.1.
This commit adds the gradle wrapper, generated using
```
gradle wrapper --gradle-version 2.2.1
```
This command generates a gradle-wrapper.properties that links to the
binary distribution of Gradle. For better integration with IDE's, this
commit changes the URL to '*-all.zip'
More information about the Gradle wrapper can be found in the
[Gradle User Guide - Wrapper](https://docs.gradle.org/current/userguide/gradle_wrapper.html)