Albumin Diet is an application that aims to make a music streaming platform (Spotify) less playlist-centric and more album oriented. With Albumin Diet you can:
- Tag your saved albums with your custom-made tags
- Browse your saved albums by tag
- Save an album in your listening-list and listen to them later
N.B. This is intended to be a POC and is using a free DBaaS with limited storage available. All your data may be lost without warning.
Albumin Diet for Android can be installed from the Play Store.
Albumin Diet for iOS is fully working, but it has not been published yet because I can't afford the Apple Developer License 😢
However, you can use the web version: www.albumindiet.ml
Albumin Diet has born to test the capabilities of several technologies. The whole ecosystem is made of the following applications:
- albumin-diet-engine
- Backend
- albumin-diet-portal
- Frontend Web
- albumin-diet-mobapp (this repository)
- Frontend Mobile App
I used this project to test the capabilities of the following technologies:
- React Native
- Typescript (to test React Native compatibility)
- Redux pattern
To run this application locally, you need to perform the following steps:
- Clone the repository
git clone https://github.com/gianlucaparadise/albumin-diet-mobapp && cd albumin-diet-mobapp
- Install the dependencies
yarn install
You need to run the albumin-diet-engine locally following this guide.
- Install iOS dependencies
cd ios && pod install && cd ..
- Run the app:
yarn ios
- Fill the example keystore file with your information
cp android/keystoreinfo.example.gradle android/keystoreinfo.gradle && vi android/keystoreinfo.gradle # use your favorite editor instead of vi
- Open
android/
folder with Android Studio and make it auto-configure everything
studio android/
N.B. this works only if you have installed the command line launcher
- Run the app:
yarn android
- Clean android using gradle:
yarn clean-android
- Clean ios using xcodebuild:
yarn clean-ios
- Clean node_modules and re-install:
yarn clean-node