We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Remove all the other TargetFrameworks other than Android and iOS
or
Add preprocessor directives ANDROID || IOS for UseLocalNotification
public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder .UseMauiApp<App>() #if ANDROID || IOS .UseLocalNotification() #endif .ConfigureFonts(fonts => .... return builder. Build(); } }