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
<PackageReference Include="Plugin.Maui.IMEPayMin" Version="0.0.2" />
paket add Plugin.Maui.IMEPayMin --version 0.0.2
#r "nuget: Plugin.Maui.IMEPayMin, 0.0.2"
// 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
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-android34.0 is compatible. net8.0-ios18.0 is compatible. |
-
net8.0-android34.0
- IMAndroidPay (>= 0.0.4)
- Microsoft.Maui.Controls (>= 8.0.3)
- Xamarin.AndroidX.Activity.Ktx (>= 1.9.3.1)
- Xamarin.AndroidX.Collection.Ktx (>= 1.4.5.1)
- Xamarin.AndroidX.Fragment.Ktx (>= 1.8.5.1)
- Xamarin.AndroidX.Lifecycle.Common (>= 2.8.7.1)
- Xamarin.AndroidX.Lifecycle.LiveData.Core (>= 2.8.7.1)
-
net8.0-ios18.0
- AF8RingSoftNetworking (>= 0.0.17)
- ImIOSPay (>= 0.0.2)
- Microsoft.Maui.Controls (>= 8.0.3)
- SVProgressHUD (>= 2.3.1.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.