An android application displaying a UI with modern art as part of a course for developing android applications on Coursera.
Packages for the latest stable build can be downloaded on the releases page.
You can also download the latest master nightly debug or release build, also you can view the latest lint results.
This is an Android Studio project: http://developer.android.com/sdk/installing/studio.html
Then import the project into Android Studio: File -> Import Project -> Choose Directory -> Import from external model -> Gradle -> Use default gradle wrapper -> Finish
Alternatively you can use the gradle wrapper to build the application. First make the graddle wrapper executable:
chmod +x gradlew
To build a debug version:
./gradlew assembleDebug
To build a release version:
./gradlew assembleRelease
The apks will be located in app/build/outputs/apk
.
Recent changes can be viewed on Github on the Releases Page
See the contributing docs
When submitting an issue, please follow the guidelines.
When submitting a bugfix, write a test that exposes the bug and fails before applying your fix. Submit the test alongside the fix.
When submitting a new feature, add tests that cover the feature.
MIT