Skip to content

Commit

Permalink
Upgraded iOS SDK to 9.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanellis committed Dec 1, 2021
1 parent 184eb3d commit a71a020
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions Example/iOSExample/ViewController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,34 +35,34 @@ public override void ViewDidLoad()
ClaimType.Enrol, // Choose between Enrol or Verify
userId); // Pass the User ID

IProov.LaunchWithStreamingURL("https://eu.rp.secure.iproov.me/", token, new IPOptions(),
IProov.LaunchWithStreamingURL(Credentials.BASE_URL, token, new IPOptions(),
connecting: () =>
{
BTProgressHUD.Show("Connecting...", maskType: ProgressHUD.MaskType.Black);
BTProgressHUD.Show("Connecting...", maskType: MaskType.Black);
},
connected: () =>
{
BTProgressHUD.Dismiss();
},
processing: (progress, message) =>
{
BTProgressHUD.Show(message, (float) progress, maskType: ProgressHUD.MaskType.Black);
BTProgressHUD.Show(message, (float) progress, maskType: MaskType.Black);
},
success: (result) =>
{
BTProgressHUD.ShowSuccessWithStatus("Success!", maskType: ProgressHUD.MaskType.Black);
BTProgressHUD.ShowSuccessWithStatus("Success!", maskType: MaskType.Black);
},
cancelled: () =>
{
BTProgressHUD.Dismiss();
},
failure: (result) =>
{
BTProgressHUD.ShowErrorWithStatus(result.Reason, maskType: ProgressHUD.MaskType.Black);
BTProgressHUD.ShowErrorWithStatus(result.Reason, maskType: MaskType.Black);
},
error: (error) =>
{
BTProgressHUD.ShowErrorWithStatus(error.LocalizedDescription, maskType: ProgressHUD.MaskType.Black);
BTProgressHUD.ShowErrorWithStatus(error.LocalizedDescription, maskType: MaskType.Black);
});
};
}
Expand Down
6 changes: 3 additions & 3 deletions Example/iOSExample/iOSExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Xamarin.Essentials" Version="1.6.1" />
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
<PackageReference Include="iProov.iOS">
<Version>9.1.0</Version>
<Version>9.2.0</Version>
</PackageReference>
<PackageReference Include="Newtonsoft.Json">
<Version>13.0.1</Version>
</PackageReference>
<PackageReference Include="BTProgressHUD">
<Version>1.3.3</Version>
<Version>1.3.5</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
Expand Down
Binary file added NuGet Packages/iProov.iOS.9.2.0.nupkg
Binary file not shown.

0 comments on commit a71a020

Please sign in to comment.