Skip to content

Commit

Permalink
4.0.2 (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Oct 23, 2024
1 parent 91542f2 commit eca92ac
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 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.0.2
* Update IconView to support native ad icon image view, primarily for BigoAds native ads.
## 4.0.1
* Crash if plugin version is incompatible with native SDK version.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class AppLovinMAX
{
private static final String SDK_TAG = "AppLovinSdk";
public static final String TAG = "AppLovinMAX";
private static final String PLUGIN_VERSION = "4.0.0";
private static final String PLUGIN_VERSION = "4.0.2";

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

static
{
ALCompatibleNativeSdkVersions.put( "4.0.2", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "4.0.1", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "4.0.0", "13.0.0" );
}
Expand Down
3 changes: 2 additions & 1 deletion applovin_max/ios/Classes/AppLovinMAX.m
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,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.0.0";
static NSString *const PLUGIN_VERSION = @"4.0.2";

static NSString *const USER_GEOGRAPHY_GDPR = @"G";
static NSString *const USER_GEOGRAPHY_OTHER = @"O";
Expand All @@ -74,6 +74,7 @@ @implementation AppLovinMAX
+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar> *)registrar
{
ALCompatibleNativeSDKVersions = @{
@"4.0.2" : @"13.0.0",
@"4.0.1" : @"13.0.0",
@"4.0.0" : @"13.0.0"
};
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.0.1'
s.version = '4.0.2'
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.0.1";
const String _version = "4.0.2";

/// 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.0.1
version: 4.0.2
homepage: https://github.com/AppLovin/AppLovin-MAX-Flutter

environment:
Expand Down

0 comments on commit eca92ac

Please sign in to comment.