All Questions
3 questions
1
vote
3
answers
684
views
Best way to Model Classes associated with other Classes?
I'm trying to make a sports stats app in Java/Android + Realm.
I have the following classes:
Season
Player
Matches
I would like the Season to contain a "list" of all the players that played that ...
2
votes
2
answers
693
views
Is 20 Java classes for just making a REST call too much?
In an Android project, I am using dagger 2 for dependency injection, applying mvp design pattern, and I am writing interface for almost every class. Although it does achieved the separation of ...
0
votes
1
answer
69
views
Restructure Service - Http - Notification communication
I am trying to restructure a project to make components reusable and clearer.
Consider the following scenario:
A WakefulBroadcastReceiver (in my case called SimpleWakefulReceiver) will start my ...