1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-13 23:03:23 +00:00

fix for activity exporting and workaround for task affinity (#1408)

This commit is contained in:
Matt Portune
2021-05-19 15:55:16 -04:00
committed by GitHub
parent 570edb4319
commit e61bcd2785
2 changed files with 5 additions and 1 deletions

View File

@@ -3,7 +3,10 @@ using Android.Content.PM;
namespace Bit.Droid
{
[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop)]
[Activity(
Exported = false,
NoHistory = true,
LaunchMode = LaunchMode.SingleTop)]
[IntentFilter(new[] { Android.Content.Intent.ActionView },
Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable },
DataScheme = "bitwarden")]