GrayLabs.Android.NorrisBoat.SydepayAndroidSDK 1.0.1

dotnet add package GrayLabs.Android.NorrisBoat.SydepayAndroidSDK --version 1.0.1
                    
NuGet\Install-Package GrayLabs.Android.NorrisBoat.SydepayAndroidSDK -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GrayLabs.Android.NorrisBoat.SydepayAndroidSDK" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GrayLabs.Android.NorrisBoat.SydepayAndroidSDK" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="GrayLabs.Android.NorrisBoat.SydepayAndroidSDK" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GrayLabs.Android.NorrisBoat.SydepayAndroidSDK --version 1.0.1
                    
#r "nuget: GrayLabs.Android.NorrisBoat.SydepayAndroidSDK, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=GrayLabs.Android.NorrisBoat.SydepayAndroidSDK&version=1.0.1
                    
Install GrayLabs.Android.NorrisBoat.SydepayAndroidSDK as a Cake Addin
#tool nuget:?package=GrayLabs.Android.NorrisBoat.SydepayAndroidSDK&version=1.0.1
                    
Install GrayLabs.Android.NorrisBoat.SydepayAndroidSDK as a Cake Tool

An android sdk to help developers easily integrate the Slydepay SDK into their applications to accept mobile money and credit card payments.

1. Initialize sdk preferably in your Application class to avoid initializing it multiple time.
new SlydepayPayment(this).InitCredentials("email", "hgyghgfggjhhfch");

2. Performing transactions.
PayWithSlydepay.Pay(this, "itemName", 4.8, "description", "customerName", "customerEmail", "orderCode", "phoneNumber", 800);

protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data)
       {
           base.OnActivityResult(requestCode, resultCode, data);
           if (requestCode == 800)
           {
               switch (resultCode)
               {
                   case Result.Ok:
                       //Payment was successful
                       break;
                   case Result.Canceled:
                       //Payment failed
                       break;
                   case Result.FirstUser:
                       //Payment was cancelled by user
                       break;
               }
           }
       }

Product Compatible and additional computed target framework versions.
.NET net6.0-android was computed.  net7.0-android was computed.  net8.0-android was computed.  net9.0-android was computed. 
MonoAndroid monoandroid is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 496 10/5/2020

FIxed major bugs when selecting VISA payment