Moxy
Moxy copied to clipboard
Moxy is MVP library for Android
Добрый день. На большом количестве устройств - от 9 до 12 версии андроид происходит вылет со следующей ошибкой Fatal Exception: java.util.ConcurrentModificationException at java.util.ArrayList$Itr.next(ArrayList.java:860) at moxy.MvpDelegate.onAttach(MvpDelegate.java:166) at moxy.MvpAppCompatFragment.onStart(MvpAppCompatFragment.java:38) at androidx.fragment.app.Fragment.performStart(Fragment.java:2731) at...
I'm trying to create TabAdapter class that inherits FragmentStateAdapter. So in function createFragment I need to return my framents which inherits MvpFragment, but it says:  And if function will...
I started AndroidX project, i am using this dependencies: ``` ` //implementation "com.arello-mobile:moxy:$moxy" implementation "com.arello-mobile:moxy-app-compat:$moxy" annotationProcessor "com.arello-mobile:moxy-compiler:$moxy" implementation 'tech.schoolhelper:moxy-x-androidx:1.7.0'` ``` but in build process getting this error: > Duplicate class...
After obfuscation, the names of the presenter classes have the same name, as a result of which an error occurs when we get the presenter from the map and bring...
After migrating to AndroidX I faced the problem of underling errors in activities which extend MvpAppCompatActivity. I think it is because of using import android.support.v7 … instead of import androidx.appcompat…...
I tried to implement : implementation 'tech.schoolhelper:moxy-x:1.7.0' .Successfully build.but presenter is null
Решил обновить проект. Перешел на Androidx и с com.github.moxy на com.arello-mobile Проблему со всеми импортами решил, но появилась ошибка кодогенерации moxy (то есть при com.github.moxy - такого не было) Мой...
Hi. I have a problem with moxy-presenter (PresenterType == PresenterType.LOCAL). It is not destroyed after fragment-onDestroy. I use _FragmentManager.saveFragmentInstanceState_ method in my application logic and it affects presenter lifecycle. Steps...
Здравствуйте. В ходе изучения Moxy возникла следующая проблема - для организованности проекта я выделил под 1 фрагмент package SearchScreen. Внутри него хранятся файлы фрагмента, вью и презентера+2 подпакета для табов....