├── .gitattributes ├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AppShell.xaml ├── AppShell.xaml.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MauiProgram.cs ├── Models ├── PushNotificationReceived.cs └── PushNotificationRequest.cs ├── NewPage1.xaml ├── NewPage1.xaml.cs ├── NewPage2.xaml ├── NewPage2.xaml.cs ├── Platforms ├── Android │ ├── AndroidManifest.xml │ ├── MainActivity.cs │ ├── MainApplication.cs │ ├── Resources │ │ └── values │ │ │ └── colors.xml │ ├── Services │ │ └── FirebaseService.cs │ └── google-services.json ├── MacCatalyst │ ├── AppDelegate.cs │ ├── Info.plist │ └── Program.cs ├── Tizen │ ├── Main.cs │ └── tizen-manifest.xml ├── Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Package.appxmanifest │ └── app.manifest └── iOS │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Program.cs │ └── UserNotificationCenterDelegate.cs ├── Properties └── launchSettings.json ├── PushNotificationDemoMAUI.csproj ├── PushNotificationDemoMAUI.sln ├── README.md └── Resources ├── AppIcon ├── appicon.svg └── appiconfg.svg ├── Fonts ├── OpenSans-Regular.ttf └── OpenSans-Semibold.ttf ├── Images └── dotnet_bot.svg ├── Raw ├── AboutAssets.txt └── admin_sdk.json ├── Splash └── splash.svg └── Styles ├── Colors.xaml └── Styles.xaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AppShell.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/AppShell.xaml -------------------------------------------------------------------------------- /AppShell.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/AppShell.xaml.cs -------------------------------------------------------------------------------- /MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/MainPage.xaml -------------------------------------------------------------------------------- /MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/MainPage.xaml.cs -------------------------------------------------------------------------------- /MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/MauiProgram.cs -------------------------------------------------------------------------------- /Models/PushNotificationReceived.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Models/PushNotificationReceived.cs -------------------------------------------------------------------------------- /Models/PushNotificationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Models/PushNotificationRequest.cs -------------------------------------------------------------------------------- /NewPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/NewPage1.xaml -------------------------------------------------------------------------------- /NewPage1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/NewPage1.xaml.cs -------------------------------------------------------------------------------- /NewPage2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/NewPage2.xaml -------------------------------------------------------------------------------- /NewPage2.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/NewPage2.xaml.cs -------------------------------------------------------------------------------- /Platforms/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /Platforms/Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Android/MainActivity.cs -------------------------------------------------------------------------------- /Platforms/Android/MainApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Android/MainApplication.cs -------------------------------------------------------------------------------- /Platforms/Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /Platforms/Android/Services/FirebaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Android/Services/FirebaseService.cs -------------------------------------------------------------------------------- /Platforms/Android/google-services.json: -------------------------------------------------------------------------------- 1 | //Add Google Service Json -------------------------------------------------------------------------------- /Platforms/MacCatalyst/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/MacCatalyst/AppDelegate.cs -------------------------------------------------------------------------------- /Platforms/MacCatalyst/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/MacCatalyst/Info.plist -------------------------------------------------------------------------------- /Platforms/MacCatalyst/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/MacCatalyst/Program.cs -------------------------------------------------------------------------------- /Platforms/Tizen/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Tizen/Main.cs -------------------------------------------------------------------------------- /Platforms/Tizen/tizen-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Tizen/tizen-manifest.xml -------------------------------------------------------------------------------- /Platforms/Windows/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Windows/App.xaml -------------------------------------------------------------------------------- /Platforms/Windows/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Windows/App.xaml.cs -------------------------------------------------------------------------------- /Platforms/Windows/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Windows/Package.appxmanifest -------------------------------------------------------------------------------- /Platforms/Windows/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/Windows/app.manifest -------------------------------------------------------------------------------- /Platforms/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Platforms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/iOS/Info.plist -------------------------------------------------------------------------------- /Platforms/iOS/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/iOS/Program.cs -------------------------------------------------------------------------------- /Platforms/iOS/UserNotificationCenterDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Platforms/iOS/UserNotificationCenterDelegate.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /PushNotificationDemoMAUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/PushNotificationDemoMAUI.csproj -------------------------------------------------------------------------------- /PushNotificationDemoMAUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/PushNotificationDemoMAUI.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/README.md -------------------------------------------------------------------------------- /Resources/AppIcon/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/AppIcon/appicon.svg -------------------------------------------------------------------------------- /Resources/AppIcon/appiconfg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/AppIcon/appiconfg.svg -------------------------------------------------------------------------------- /Resources/Fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Resources/Fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /Resources/Images/dotnet_bot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Images/dotnet_bot.svg -------------------------------------------------------------------------------- /Resources/Raw/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Raw/AboutAssets.txt -------------------------------------------------------------------------------- /Resources/Raw/admin_sdk.json: -------------------------------------------------------------------------------- 1 | //Add Admin Sdk Content Here 2 | -------------------------------------------------------------------------------- /Resources/Splash/splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Splash/splash.svg -------------------------------------------------------------------------------- /Resources/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Styles/Colors.xaml -------------------------------------------------------------------------------- /Resources/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mistrypragnesh40/PushNotificationDemoMAUI/HEAD/Resources/Styles/Styles.xaml --------------------------------------------------------------------------------