Skip to content

Commit

Permalink
4.3.0 (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Feb 5, 2025
1 parent 893fecd commit 33c001e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion applovin_max/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Versions

## x.x.x
## 4.3.0
* Update `MaxAd` to include `adFormat`, `networkPlacement`, and `latencyMills`.
* Depends on Android SDK v13.1.0 and iOS SDK v13.1.0.
## 4.2.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public class AppLovinMAX
{
private static final String SDK_TAG = "AppLovinSdk";
public static final String TAG = "AppLovinMAX";
private static final String PLUGIN_VERSION = "4.2.1";
private static final String PLUGIN_VERSION = "4.3.0";

private static final String USER_GEOGRAPHY_GDPR = "G";
private static final String USER_GEOGRAPHY_OTHER = "O";
Expand All @@ -84,6 +84,7 @@ public class AppLovinMAX

static
{
ALCompatibleNativeSdkVersions.put( "4.3.0", "13.0.1" );
ALCompatibleNativeSdkVersions.put( "4.2.1", "13.0.1" );
ALCompatibleNativeSdkVersions.put( "4.2.0", "13.0.1" );
ALCompatibleNativeSdkVersions.put( "4.1.2", "13.0.1" );
Expand Down
14 changes: 7 additions & 7 deletions applovin_max/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PODS:
- applovin_max (4.2.1):
- AppLovinSDK (= 13.0.1)
- applovin_max (4.3.0):
- AppLovinSDK (= 13.1.0)
- Flutter
- AppLovinSDK (13.0.1)
- AppLovinSDK (13.1.0)
- Flutter (1.0.0)

DEPENDENCIES:
Expand All @@ -20,10 +20,10 @@ EXTERNAL SOURCES:
:path: Flutter

SPEC CHECKSUMS:
applovin_max: c3cbdc57d848a1b6b068d51f25eb7d2ac37c56b8
AppLovinSDK: fdae6a4361c9c9b09f8d7d18ede792368221d987
applovin_max: 9132e2896e6ce46120571486fe651a3c9ab13a4e
AppLovinSDK: 539a0178d8bef4d68b2551a93526e0c1bba06cb2
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7

PODFILE CHECKSUM: 663715e941f9adb426e33bf9376914006f9ea95b
PODFILE CHECKSUM: cf0c950f7e9a456b4e325f5b8fc0f98906a3705a

COCOAPODS: 1.15.2
COCOAPODS: 1.16.2
3 changes: 2 additions & 1 deletion applovin_max/ios/Classes/AppLovinMAX.m
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ @interface AppLovinMAX()<MAAdDelegate, MAAdViewAdDelegate, MARewardedAdDelegate,
@implementation AppLovinMAX
static NSString *const SDK_TAG = @"AppLovinSdk";
static NSString *const TAG = @"AppLovinMAX";
static NSString *const PLUGIN_VERSION = @"4.2.1";
static NSString *const PLUGIN_VERSION = @"4.3.0";

static NSString *const USER_GEOGRAPHY_GDPR = @"G";
static NSString *const USER_GEOGRAPHY_OTHER = @"O";
Expand All @@ -76,6 +76,7 @@ @implementation AppLovinMAX
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar> *)registrar
{
ALCompatibleNativeSDKVersions = @{
@"4.3.0" : @"13.0.1",
@"4.2.1" : @"13.0.1",
@"4.2.0" : @"13.0.1",
@"4.1.2" : @"13.0.1",
Expand Down
2 changes: 1 addition & 1 deletion applovin_max/ios/applovin_max.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Pod::Spec.new do |s|
s.authors = 'AppLovin Corporation'
s.name = 'applovin_max'
s.version = '4.2.1'
s.version = '4.3.0'
s.summary = 'AppLovin MAX Flutter Plugin'
s.description = <<-DESC
AppLovin MAX Flutter Plugin
Expand Down
2 changes: 1 addition & 1 deletion applovin_max/lib/applovin_max.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export 'package:applovin_max/src/max_ad_view.dart';
export 'package:applovin_max/src/max_native_ad_view.dart';

/// The current version of the SDK.
const String _version = "4.2.1";
const String _version = "4.3.0";

/// Represents the AppLovin SDK.
class AppLovinMAX {
Expand Down
2 changes: 1 addition & 1 deletion applovin_max/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: applovin_max
description: AppLovin MAX Flutter Plugin for Android and iOS - with support for interstitial ads, rewarded ads, banners, and MRECs.
version: 4.2.1
version: 4.3.0
homepage: https://github.com/AppLovin/AppLovin-MAX-Flutter

environment:
Expand Down

0 comments on commit 33c001e

Please sign in to comment.