Plugin.Maui.IMEPayMin
0.0.1
See the version list below for details.
dotnet add package Plugin.Maui.IMEPayMin --version 0.0.1
NuGet\Install-Package Plugin.Maui.IMEPayMin -Version 0.0.1
<PackageReference Include="Plugin.Maui.IMEPayMin" Version="0.0.1" />
paket add Plugin.Maui.IMEPayMin --version 0.0.1
#r "nuget: Plugin.Maui.IMEPayMin, 0.0.1"
// Install Plugin.Maui.IMEPayMin as a Cake Addin #addin nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.1 // Install Plugin.Maui.IMEPayMin as a Cake Tool #tool nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.1
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.1
Initialize IMEPay Plugin inside MauiProgram.cs
builder.Services.AddSingleton<IIMEPayService, IMEPayService>(); // For DI configuration in MAUI
.NET MAUI Android Implementation (MainActivity.cs)
.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
Gain access to the entire plugin, free from the evaluation popup limit, by supporting our project with a small contribution. Your support acknowledges our hard work and dedication 🥰. We suggest trying the evaluation copy before making a purchase. Plus, we've made it affordable for all customers.
Upon completing your payment of RS 2,500 NRS for our IME Payment Gateway Plugin, please provide your GitHub email address and bank receipt at 8ringsoft@gmail.com. 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.