EasyMVP icon indicating copy to clipboard operation
EasyMVP copied to clipboard

A full-featured framework that allows building android applications following the principles of Clean Architecture.

Results 13 EasyMVP issues
Sort by recently updated
recently updated
newest added

Hi, I implemented easy MVP in my application. Everything used to work fine. But I have to update com.android.support:design to 27.1.1. When I do this my presenter is not created...

Hi, I ran into this weird problem where the Activity view's presenter is created but not attached the first time the activity is created. After that, if for example I...

In a legacy project using EasyMVP have a @CustomView extending LinearLayout and for some reason it throws NPE in attachView (everything extends AppCompatActivity, so it's not related to #34) and...

EasyMVP works fine with Dagger 2.11. It is broken when migrating to Dagger 2.12. You can easily replicate this by compiling the sample tvProgram_android project against this Dagger version. When...

bug

I have problem while trying to use Robolectric to test activity which is using EasyMvp. All of the classes are written in Kotlin. Part of Activity: ``` @ActivityView(layout = R.layout.activity_access,...

Saving presenters doesn't work with enabled don't keep activities flag in developer options.

When I try use contract interface in Kotlin eg: ``` interface XContract { interface View { ... } interface Presenter { ... } } ``` ViewDelegate have problems to generate...

bug

This is not a bug, maybe a suggestion. Is there any plan on integrating [Architecture Components](https://developer.android.com/topic/libraries/architecture/index.html) with this library? I have some suggestions like: * Having some modules to integrate...

feature