android-mvp-architecture icon indicating copy to clipboard operation
android-mvp-architecture copied to clipboard

This repository contains a detailed sample app that implements MVP architecture using Dagger2, GreenDao, RxJava2, FastAndroidNetworking and PlaceholderView

Results 40 android-mvp-architecture issues
Sort by recently updated
recently updated
newest added

@Override public Response intercept(Interceptor.Chain chain) throws IOException { final Request request = chain.request(); final Request.Builder builder = request.newBuilder(); String apiAuthType = request.header(ApiHeader.API_AUTH_TYPE); if (apiAuthType == null) { apiAuthType = ApiHeader.PROTECTED_API;...

Hi, in your presenters you create an rx-chain, subscribe to it with consumers and put the resulting Disposable into CompositeDisposable. First question - why don't you keep a simple Disposable...

Hi, first of all, thanks for this example, I'm trying to build an App using this example. I'll use a local DB so I'm using what you build with Greendao...

Hi, i just this app only five pages but it almost 12M, why ? is it include too much libraries ?

How do you save the presenters state during a configuration change?

So when an application needs anything it will request that from DataManager. For a simple application with 8-15 API call, it is ok. But think when you have so many...

I'm trying to understand this mvp pattern from your example i'm getting lot of from this so kindly help me to understand requestPermissionsSafely method available in BaseActivity. What i'm trying...

in basedialog where we are doing the fragment transaction, fragments are added to backstack although it does seem harmless but in the cases where there is a repeated call to...

Hi Developer I am using this framework since long time. I am facing one issue, i am accessing the presenter object from different Fragment class via class instance, BUT i...

When starting the app, the Splash Activity is called but I doesn't load the layout correctly as it shows a blank screen.