-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 Add [Preserve] attribute to fix code stripping & Simplify Android m…
…anifest
- Loading branch information
1 parent
a064c45
commit c2b97d6
Showing
2 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,24 @@ | ||
using System; | ||
using UnityEngine.Scripting; | ||
|
||
[Preserve] | ||
[Serializable] | ||
public class LoginParams | ||
{ | ||
[Preserve] | ||
public Provider loginProvider { get; set; } | ||
[Preserve] | ||
public string dappShare { get; set; } | ||
[Preserve] | ||
public ExtraLoginOptions extraLoginOptions { get; set; } | ||
[Preserve] | ||
public Uri redirectUrl { get; set; } | ||
[Preserve] | ||
public string appState { get; set; } | ||
[Preserve] | ||
public MFALevel mfaLevel { get; set; } | ||
|
||
[Preserve] | ||
public Curve curve { get; set; } = Curve.SECP256K1; | ||
[Preserve] | ||
public string dappUrl { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters