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.
<PackageVersion Include="Plugin.Maui.IMEPayMin" Version="0.0.2" />
<PackageReference Include="Plugin.Maui.IMEPayMin" />
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 Plugin.Maui.IMEPayMin --version 0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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.
#addin nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.2
#tool nuget:?package=Plugin.Maui.IMEPayMin&version=0.0.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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. net9.0-android was computed. net9.0-ios was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
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.