Miguel Muñoz
Miguel Muñoz
Need help > FirebasePushNotificationsPlugin : Default FirebaseApp is not initialized in this process
Hi all, [here](https://docs.microsoft.com/en-us/xamarin/android/data-cloud/google-messaging/remote-notifications-with-fcm?tabs=macos#firebaseapp-is-not-initialized) another solution to this issue. Regards!
Hi all, that is something I resolved with this code in SplashScreen if you have it, protected override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState); var mainIntent = new Intent(Application.Context, typeof(MainActivity)); if...
Hi, depends of your process to register device. If your login process are successful, I guess you are saving that token device associated to that logged user right? If is...
Hi, to customize border rounded, color and size it's necessary change the **ShapeDrawable** to **GradientDrawable** : `GradientDrawable gradientDrawable = new GradientDrawable(); gradientDrawable.SetColor(Android.Graphics.Color.Transparent); gradientDrawable.SetCornerRadius(10); gradientDrawable.SetStroke(1, Android.Graphics.Color.LightGray); Drawable[] layers = { gradientDrawable,...