App Reload on Push Notification Click with Splash Activity Xamarin Forms
See original GitHub issueThis is a continuation of issue #11
I have this Application that has a Splash Activity as its main launcher followed by the Main Activity. When its just the Main Activity i have this:
[Activity(LaunchMode = LaunchMode.SingleTop, Label = "App", Icon = "@drawable/app_logo", Theme = "@style/MainTheme", ScreenOrientation = ScreenOrientation.Portrait, MainLauncher = true)]
Also an overidden method:
protected override void OnNewIntent(Intent intent)
{
FirebasePushNotificationManager.ProcessIntent(intent);
}
This works as expected with just only a Main Activity as your launcher. The issue i am having is for my instance i have a Splash Activity as my main launcher, I tried switching around the implementation but still no success.
What am i missing?
Issue Analytics
- State:
- Created 6 years ago
- Comments:29 (9 by maintainers)
Top Results From Across the Web
App Reload on Push Notification Click Xamarin Forms
I have implemented push notifications on my app and they work fine. The problem I have is that when I click them in...
Read more >Start an Activity from a Notification
To start a "regular activity" from your notification, set up the PendingIntent using TaskStackBuilder so that it creates a new back stack as ......
Read more >Handle Push Notification Click in Xamarin - YouTube
In this video we learn how to handle the push notification click inside our xamarin forms android project using pending intent.
Read more >Implement Push Notifications with Xamarin.Forms ... - YouTube
FirebasePushNotifications 08:59 - Configure Android App 10:10 - Bootstrap Push Notifications 11:54 - Android Notification Channels 16:05 ...
Read more >Splash screen on OnAppLinkRequestReceived in Xamarin ...
Hi, My splash screen of Xamarin.Android works when I tap the app. The app can also be started via OnAppLinkRequestReceived.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Getting back to this. Sorry guys I was on a trip but now back. Will get that sample going this week
I will create a working sample of use with splash but bare with me might take me a few days because of other commitments I currently have.