An Android App with Ruby on Rails api backend for shared watch lists between friends.
You can add your own server (just basic CRUD server will do) in the app by changing the url in the app. They are located as follows:
- app/src/main/java/com/a_team/mercury/MainActivity.java (Line 44)
- app/src/main/java/com/a_team/mercury/CardDataAdapter.java (Line 170, 198)
- app/src/main/java/com/a_team/mercury/SplashScreen.java (Line 27)
Here is a sample data point sent by the server:
{
"status": "SUCCESS",
"message": "Loaded items",
"data": [
{
"id": 16,
"title": "Spiderman No Way Home",
"url": "https://youtu.be/ZYzbalQ6Lg8",
"value_type": "movie",
"created_at": "2022-02-13T15:10:31.003Z",
"updated_at": "2022-03-20T06:52:41.083Z",
"watched": 0
}
]
}
This project is licensed under the MIT License - see the LICENSE file for details