Tomasz Cielecki

Results 216 comments of Tomasz Cielecki

Please provide more information. Hide how? As in not showing it at all and just show camera?

This doesn't seem like a bug, but rather a misunderstanding of how MvvmCross works. Making an Activity and calling it something with splash screen doesn't magically do anything. You need...

The splash screen is not the important part, but rather the MainApplication. MvvmCross doesn't rely on the splash anymore for setup. You need to provide a bit more info so...

You don't call `RegisterAppStart` in your `MvxAppStart` class. You main application doesn't specify your `MvxAppStart`. Should look like: ``` public class MainApplication : MvxAndroidApplication ```

@entdark you don't _have_ to have the `MvxStartActivity` it is there for legacy purposes for when you want to show your own splash animation. All init happens now in `MvxAndroidApplication`...

Refer to: - https://github.com/MvvmCross/MvvmCross/blob/develop/Projects/Playground/Playground.Core/App.cs - https://github.com/MvvmCross/MvvmCross/blob/develop/Projects/Playground/Playground.Droid/MainApplication.cs - https://github.com/MvvmCross/MvvmCross/blob/develop/Projects/Playground/Playground.Droid/Setup.cs