mosby icon indicating copy to clipboard operation
mosby copied to clipboard

A Model-View-Presenter / Model-View-Intent library for modern Android apps

Results 28 mosby issues
Sort by recently updated
recently updated
newest added

[Configuration on demand](https://docs.gradle.org/current/userguide/multi_project_configuration_and_execution.html#sec:configuration_on_demand). Configuration on demand tells Gradle to configure modules that only are relevant to the requested tasks instead of configuring all of them. We can enable this feature...

When i start it on Android Studio 3.1.2, app crashes with stack like this: ``` 05-28 10:23:15.357 28499-28499/com.hannesdorfmann.mosby3.sample.mvi E/AndroidRuntime: FATAL EXCEPTION: main Process: com.hannesdorfmann.mosby3.sample.mvi, PID: 28499 java.lang.IllegalStateException: Fatal Exception thrown...

**Mosby Version:** 3.1.1 **Expected behavior** Not to crash. **Actual behavior (include a stacktrace if crash)** ``` Fatal Exception: java.lang.IllegalArgumentException: The generic type must be the first generic type argument of...

**Mosby Version:** 3.1.1 **Expected behavior** **MviPresenter$classes** instances should be garbage collected after leaving fragment and its activity host and not bound to any INSTANCE object **Actual behavior (include a stacktrace...

Steps to reproduce bug: 1. Create view which is inherited from for example `MvpFrameLayout` 2. Add view to any `ViewGroup` 3. Remove from the `ViewGroup` (`detachView()` and `destroy()` methods from...

Unfortunately Mosby V3 is not compatable with AndroidX as accessing the backstack to see if a fragment is still in use (or presenter can be released) is not possible anymore...

help wanted

App process killed -> conductor setRoot() called (back stack is not empty) -> postDestroy() called on controllers in the backstack -> destroy() called on a null presenter -> crash happened.

Need help to solve this error > java.lang.IllegalAccessError: Method 'boolean androidx.fragment.app.Fragment.isInBackStack()' is inaccessible to class 'androidx.core.app.BackstackAccessor' I read on release to use **BackstackAccessor.isFragmentOnBackStack(Fragment())**. where should I use this line of...

Hi, I faced with some issue and would be very appriciate if you could help with it. I use ```gradle com.hannesdorfmann.mosby3:viewstate:3.1.1 ``` This is my Activity class: ```kotlin class MainActivity...