-
Notifications
You must be signed in to change notification settings - Fork 841
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mosby V4 - AndroidX support #339
Comments
For me it's "whatever works" as long as I can keep updating critically important dependencies, have you tried this approach? @sockeqwe Is there any v4 release ETA...? |
It would be fair if this important notice will appear in https://github.com/sockeqwe/mosby/blob/master/README.md |
hi, is there any Progress in the AndroidX Development? It would nice to use your great lib also in AndroidX... also after Jake now has deprecated the ButterKnife... |
I will dedicate some time towards end of September to do the update to
androidx and add official support for it but most likely this will be the
last major release and will go similar direction as Butterknife did by
deprecating Mosby.
HowardSchmaeu <[email protected]> schrieb am Di., 4. Aug. 2020,
15:25:
… hi, is there any Progress in the AndroidX Development? It would nice to
use your great lib also in AndroidX... also after Jake now has deprecated
the ButterKnife...
Plz let us know what your plans are :-)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#339 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEOPLXKAYMYKIKK2VL3RALR7AD3PANCNFSM4KABHD2Q>
.
|
Hey nice to hear that you work on it. But bad news because of the deprecation :-( |
Deprecation doesn't mean stop working not minor big fixes, just don't
expect bigger releases
HowardSchmaeu <[email protected]> schrieb am Mo., 10. Aug. 2020,
10:52:
… Hey nice to hear that you work on it. But bad news because of the
deprecation :-(
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#339 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAEOPLWSP7ZG2ZJBAUTTRJTR76YNVANCNFSM4KABHD2Q>
.
|
after update mosby to latest version, the method createPresenter called before onCreateView method of fragment, so i can not pass bundle parameters to presenter for creating initial state =(
After mosby update
|
Okay great... but did you think you can create a new version of all without Butterknife? I thought this is deep chained in Mosby?? |
Any news? Thank you. |
Hi! Tell me please the release date of Mosby v4? |
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 in androidx as the method to get this information is "blacklisted" and no accessible from the outside anymore (it was in support.v4 days) see #338 #336
Any workaround suggested in #338 seems to me fragile.
Therefore I considering the following:
What we actually need is a lifecycle callback that tells us when the Fragment is actually destroyed. We could get this information by using AndroidX
ViewModel,onCleared()
.This will not be breaking change, rather it's a minor implementation detail under the hood.
What do you think?
The text was updated successfully, but these errors were encountered: