AppLovin.iOS 1.0.7

dotnet add package AppLovin.iOS --version 1.0.7
                    
NuGet\Install-Package AppLovin.iOS -Version 1.0.7
                    
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="AppLovin.iOS" Version="1.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AppLovin.iOS" Version="1.0.7" />
                    
Directory.Packages.props
<PackageReference Include="AppLovin.iOS" />
                    
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 AppLovin.iOS --version 1.0.7
                    
#r "nuget: AppLovin.iOS, 1.0.7"
                    
#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.
#:package AppLovin.iOS@1.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AppLovin.iOS&version=1.0.7
                    
Install as a Cake Addin
#tool nuget:?package=AppLovin.iOS&version=1.0.7
                    
Install as a Cake Tool

AppLovin.iOS

.NET MAUI binding for the AppLovin iOS SDK. Supports interstitial, rewarded, banner, and app open ads.

Installation

dotnet add package AppLovin.iOS

Only compatible with net10.0-ios projects.

Setup

Initialize the SDK with your AppLovin SDK key (found in your AppLovin dashboard):

using AppLovin.iOS;

AppLovinSdkBindings.ApplovininitWithSdkkey("YOUR_SDK_KEY");

Call this once at app startup, before loading any ads.

Ad Types

Interstitial Ads

AppLovinSdkBindings.ShowInterstitialAdWithAdid("YOUR_AD_UNIT_ID");

Rewarded Ads

AppLovinSdkBindings.LoadRewardedAdWithAdidd("YOUR_AD_UNIT_ID");

AppLovinSdkBindings.LoadRewardedAdWithAdidd(
    "YOUR_AD_UNIT_ID",
    () => Console.WriteLine("Ad loaded"),
    () => Console.WriteLine("Ad failed to load")
);

Use AppLovinBanner — a MAUI View subclass:

XAML:

xmlns:al="clr-namespace:AppLovin.iOS"
...
<al:AppLovinBanner AdUnitId="YOUR_AD_UNIT_ID" />

Code-behind:

var banner = new AppLovinBanner { AdUnitId = "YOUR_AD_UNIT_ID" };
myLayout.Children.Add(banner);

App Open Ads

AppLovinSdkBindings.ShowAppOpenAdWithAdid("YOUR_AD_UNIT_ID");

Mediation Debugger

AppLovinSdkBindings.ShowMeditationDebugger();

Requirements

  • .NET 10+
  • iOS 15.0+
  • Xcode 16+

<p align="center"> <a href="https://paypal.me/ibrahimelkady1"> <img src="https://raw.githubusercontent.com/stefan-niedermann/paypal-donate-button/master/paypal-donate-button.png" alt="Donate with PayPal" height="48"> </a> <br> <sub>If this project helped you, consider supporting my work ❤️</sub> </p>

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

    • 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.7 95 5/2/2026
1.0.6 102 5/2/2026
1.0.5 99 5/2/2026
1.0.4 111 5/2/2026
1.0.3 104 5/2/2026
1.0.2 113 5/2/2026
1.0.1 102 5/2/2026
1.0.0 99 5/2/2026

Initial release with support for interstitial, rewarded, banner, and app open ads.