This is the official MusicBrainz Android app. It was created as a Google Summer of Code project in 2010. Here is the product page.
NOTE: This project is not actively maintained, so updates are small and infrequent.
Get the latest release from Google Play.
Copyright © 2010-2013 Jamie McDonald. Licensed under the GNU General Public License Version 3. ZXing barcode scanner integration code and miscellaneous helper classes are licensed under the Apache License, Version 2.
Please submit issues and feature requests on GitHub.
Code contributions are welcomed in the form of pull requests. Please use the following code formatting and style guidelines:
A code formatting configuration file is included in the repo.
For building with gradle, follow the steps. Gradle wrapper downloads the
required gradle version and dependencies and builds the application. For
reference, the gradle version used is 2.2.1. For windows, replace ./gradlew
with ./gradlew.bat
.
Install the Musicbrainz api jar to local maven repository using
$ ./gradlew install
Now follow one of these in order to build the android application
For building the android apk, installing it to emulator/device and to run instrumentation checks
$ ./gradlew connectedAndroidTest
For building the android apk and installing it to emulator/device :
$ ./gradlew installDebug
For building the android apk :
$ ./gradlew build
To clean the build files :
$ gradle clean
Import project (gradle) and you are set.
(Tested with Android Studio 1.1.0 Build 135.1740770)