Plugin.Maui.IMEPayMin 0.0.2

dotnet add package Plugin.Maui.IMEPayMin --version 0.0.2                
NuGet\Install-Package Plugin.Maui.IMEPayMin -Version 0.0.2                
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="Plugin.Maui.IMEPayMin" Version="0.0.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Plugin.Maui.IMEPayMin --version 0.0.2                
#r "nuget: Plugin.Maui.IMEPayMin, 0.0.2"                
#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.
// Install Plugin.Maui.IMEPayMin as a Cake Addin
#addin nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.2

// Install Plugin.Maui.IMEPayMin as a Cake Tool
#tool nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.2                

IMEPay Native Plugin for .NET MAUI

IMEPay

Welcome to the IMEPay Plugin for .NET MAUI repository! Our Plugin provides seamless integration with IMEPay's payment gateway, enabling developers to quickly and securely accept payments in their .NET MAUI applications.

Features

  • Easy Integration: Integrate IMEPay's payment gateway into your .NET MAUI apps with just a few lines of code.
  • Secure Transactions: Ensure secure and encrypted payment transactions for your users.

Getting Started

To start using the IMEPay Plugin in your .NET MAUI project, follow these simple steps:

Installation: Install the IMEPay Plugin NuGet package in your .NET MAUI project.

dotnet add package Plugin.Maui.IMEPay --version 0.0.2

.NET MAUI Implementation (MainPage.xaml.cs)

public partial class MainPage : ContentPage
{
    public MainPage()
    {
        InitializeComponent();
    }

    private async void OnPayButtonClicked(object sender, EventArgs e)
    {
        var result = await IMEPayService.StartPaymentAsync(
            userName: "your_username", 
            password: "your_password",
            merchantCode: "merchant_code",
            merchantName: "Merchant Name",
            merchantUrl: "https://merchanturl.com",
            amount: "1000",
            referenceId: "order12345",
            module: "paymentModule",
            environment: APIEnvironment.Production);

        if (result.IsSuccess)
        {
            await DisplayAlert("Success", "Payment Successful!", "OK");
        }
        else
        {
            await DisplayAlert("Error", result.Message, "OK");
        }
    }
}

.csproj Implementation for iOS Platform (IMEPayMauiApp.csproj)

<PropertyGroup Condition="$(TargetFramework.Contains('-ios')) and '$(Configuration)' == 'Debug'">
    <ForceSimulatorX64ArchitectureInIDE>true</ForceSimulatorX64ArchitectureInIDE>
</PropertyGroup>
<PropertyGroup Condition="$(TargetFramework.Contains('-ios'))">
	<BaseOutputPath>..\..\..\..\..\temp\</BaseOutputPath>
</PropertyGroup>

Unlock the Full Version

For full version access, please contact us at 8ringsoft@gmail.com. The price is NRS 2500. Thank you!

Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios18.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.0.2 49 12/26/2024
0.0.1 35 12/26/2024