Has MvxCachingFragmentCompatActivity disappeared?

Viewed 1004

I'm trying to upgrade to MvvmCross 5.2 and get a syntax error on the MvxCachingFragmentCompatActivity. Has this class disappeared?

1 Answers

As explained in the blog for 5.2: https://www.mvvmcross.com/mvvmcross-52-release/

We've refactored the Android presenter and there is no need anymore for a special Activity like MvxCachingFragmentCompatActivity. The adviced Activity to use now is the MvxAppCompatActivity.

Related