venkateshshukla / musicbrainz-android

Official Android client to the MusicBrainz web service.
jdamcd.com
1 stars 0 forks source link

MusicBrainz Android

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.

Download

Get the latest release from Google Play.

Licenses

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.

Contributing

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.

Building with gradle

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.

  1. Install the Musicbrainz api jar to local maven repository using

    $ ./gradlew install
  2. Now follow one of these in order to build the android application

    1. For building the android apk, installing it to emulator/device and to run instrumentation checks

      $ ./gradlew connectedAndroidTest
    2. For building the android apk and installing it to emulator/device :

      $ ./gradlew installDebug
    3. For building the android apk :

      $ ./gradlew build
  3. To clean the build files :

    $ gradle clean

Android Studio

Import project (gradle) and you are set.

(Tested with Android Studio 1.1.0 Build 135.1740770)