mirror of
https://github.com/bitwarden/android.git
synced 2024-12-27 11:28:28 +03:00
f1419a75f6
* SSO login flow for pre-existing user and no 2FA * 2FA progress * 2FA support * Added SSO flows and functionality * Handle webauthenticator cancellation gracefully * updates & bugfixes * Added state validation to web auth response handling * SSO auth, account registration, and environment settings support for iOS extensions * Added SSO prevalidation to auth process * prevalidation now hitting identity service base url * additional error handling * Requested changes * fixed case
11 lines
451 B
C#
11 lines
451 B
C#
using Android.App;
|
|
using Android.Content.PM;
|
|
|
|
namespace Bit.Droid
|
|
{
|
|
[Activity(NoHistory = true, LaunchMode = LaunchMode.SingleTop)]
|
|
[IntentFilter(new[] { Android.Content.Intent.ActionView },
|
|
Categories = new[] { Android.Content.Intent.CategoryDefault, Android.Content.Intent.CategoryBrowsable },
|
|
DataScheme = "bitwarden")]
|
|
public class WebAuthCallbackActivity : Xamarin.Essentials.WebAuthenticatorCallbackActivity { }
|
|
}
|