Created
October 14, 2017 10:51
-
-
Save MarcBruins/25a31516a2589a1d8b3e98438d52af02 to your computer and use it in GitHub Desktop.
Setup.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MonkeyList.Droid | |
{ | |
public class Setup : MvxAndroidSetup | |
{ | |
//Default stuff goes here | |
protected override IEnumerable<Assembly> AndroidViewAssemblies => new List<Assembly>(base.AndroidViewAssemblies) | |
{ | |
typeof(MvvmCross.Droid.Support.V7.RecyclerView.MvxRecyclerView).Assembly | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment