https://github.com/jbmlaird/discogsbrowser
OUT OF DATE: Open source alternative to Discogs for Android. Browse Discogs with in-app YouTube functionality. Powered by Epoxy
https://github.com/jbmlaird/discogsbrowser
android daggermock discogs epoxy kotlin retrofit2 rxjava2 youtube
Last synced: 4 months ago
JSON representation
OUT OF DATE: Open source alternative to Discogs for Android. Browse Discogs with in-app YouTube functionality. Powered by Epoxy
- Host: GitHub
- URL: https://github.com/jbmlaird/discogsbrowser
- Owner: jbmlaird
- License: mit
- Created: 2017-02-19T18:25:27.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-12T21:23:49.000Z (about 8 years ago)
- Last Synced: 2023-08-16T17:36:22.168Z (almost 3 years ago)
- Topics: android, daggermock, discogs, epoxy, kotlin, retrofit2, rxjava2, youtube
- Language: Java
- Homepage:
- Size: 41.8 MB
- Stars: 21
- Watchers: 2
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://dashboard.buddybuild.com/apps/58ff64f23f33870001d2e016/build/latest?branch=master)

A direct link to the latest APK can be found [here](https://www.bitrise.io/artifact/5353216/p/8f9cdb43050a410991e00323c2e87431)
# DiscogsBrowser
Native Android app to interact with the [Discogs' public API](https://www.discogs.com/developers). This is production-ready and tested code that is an example of a live app with modern architecture.



## Usage
Due to the Play Store Impersonation policy it's uploaded with the name VinylBrowser and uses a different feature graphic.
## Technical
Android development is in a great place with all of the libraries available. This app uses the usual suspects:
* [Dagger2](https://github.com/google/dagger)
* [Retrofit2](https://github.com/square/retrofit)
* [RxJava2](https://github.com/ReactiveX/RxJava)/[RxAndroid](https://github.com/ReactiveX/RxAndroid)/[RxKotlin](https://github.com/ReactiveX/RxKotlin)
Plus:
* [RxBinding2](https://github.com/JakeWharton/RxBinding) - turn your views into RxJava Observables
* [RxCache](https://github.com/VictorAlbertos/RxCache) - reactive caching
* [Airbnb's Epoxy](https://github.com/airbnb/epoxy) - never use RecyclerView.Adapter again
* [GreenDao](https://github.com/greenrobot/greenDAO) - SQLite ORM
* [Conductor](https://github.com/bluelinelabs/Conductor) - fragment functionality without Fragments
Bug/leak catching:
* [BugSnag](https://www.bugsnag.com/product/)
* [LeakCanary](https://github.com/square/leakcanary)
Of course, the usual testing frameworks plus [DaggerMock](https://github.com/fabioCollini/DaggerMock)
* JUnit4
* Mockito
* Espresso
* [DaggerMock](https://github.com/fabioCollini/DaggerMock) - will change your life
See the [build.gradle](https://github.com/jbmlaird/DiscogsBrowser/blob/master/build.gradle) for full list of libraries.
## Discogs API Limitations
Currently, in May 2017, the public API does not allow any of the following:
* Order placing/purchasing
* Marketplace actions. This includes purchasing in app, viewing purchases or searching listings.
* Seeing order comments/updates for purchases
* Recent releases
* Notifications
## Contributions
Pull requests are welcome and encouraged! Unit tests are necessary to be merged and UI tests preferable (if a UI change).
## License
This project is licensed under the terms of the MIT license.
