Reputation: 99
I upgraded to Xamarin.Forms 4.2. For Android, it crashed immediately after launch.
The error message is Your app has entered a break state, but there is no code to show because all threads were executing external code (typically system or framework code).
After tracing through the code, the app has launched and there is no code left to execute. Then, it crashed.
Upvotes: 0
Views: 209
Reputation: 99
Thanks Lucas. As suggested, in SplashActivity.cs, change the class declaration to
public class SplashActivity : global::Android.Support.V7.App.AppCompatActivity
Upvotes: 1