I\'m implementing MVP pattern on an Andorid App and I have a doubt about where is the best place for checking the internet connection. I us
Solution:- You should check the internet connection availablity in BaseActivity class and then extend that activity is the better practice i think.
I do in my project like this:-
public boolean isInternetAvailable() { return internet.isAvailable(); }