diff --git a/CHANGELOG.md b/CHANGELOG.md
index 55b57088..49271627 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,6 @@
## Versions
-## x.x.x
+## 8.1.0
* Enhance banner and MREC (``) preloading to support preloading multiple `` instances.
## 8.0.5
* Depend on Android SDK 13.0.1 and iOS SDK 13.0.1.
diff --git a/android/build.gradle b/android/build.gradle
index aa067366..55a1c7da 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -53,8 +53,8 @@ android {
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
- buildConfigField("int", "VERSION_CODE", "8000500")
- buildConfigField("String", "VERSION_NAME", "\"8.0.5\"")
+ buildConfigField("int", "VERSION_CODE", "8010000")
+ buildConfigField("String", "VERSION_NAME", "\"8.1.0\"")
}
buildTypes {
diff --git a/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java b/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java
index cbaee869..01a55b7b 100644
--- a/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java
+++ b/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java
@@ -78,7 +78,7 @@ public class AppLovinMAXModule
{
private static final String SDK_TAG = "AppLovinSdk";
private static final String TAG = "AppLovinMAXModule";
- private static final String PLUGIN_VERSION = "8.0.5";
+ private static final String PLUGIN_VERSION = "8.1.0";
private static final String USER_GEOGRAPHY_GDPR = "G";
private static final String USER_GEOGRAPHY_OTHER = "O";
@@ -100,6 +100,7 @@ public class AppLovinMAXModule
static
{
+ ALCompatibleNativeSdkVersions.put( "8.1.0", "13.0.1" );
ALCompatibleNativeSdkVersions.put( "8.0.5", "13.0.1" );
ALCompatibleNativeSdkVersions.put( "8.0.4", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "8.0.3", "13.0.0" );
diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock
index 25f8bca2..fd352efe 100644
--- a/example/ios/Podfile.lock
+++ b/example/ios/Podfile.lock
@@ -1,5 +1,5 @@
PODS:
- - AppLovinSDK (12.5.0)
+ - AppLovinSDK (13.0.1)
- boost (1.83.0)
- CocoaAsyncSocket (7.6.5)
- DoubleConversion (1.1.6)
@@ -945,8 +945,8 @@ PODS:
- React-Mapbuffer (0.73.6):
- glog
- React-debug
- - react-native-applovin-max (6.5.0):
- - AppLovinSDK (= 12.5.0)
+ - react-native-applovin-max (8.1.0):
+ - AppLovinSDK (= 13.0.1)
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
@@ -1315,7 +1315,7 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
- AppLovinSDK: 626d2aea57ae1bf9280d2012e8e20c521c58ce28
+ AppLovinSDK: fdae6a4361c9c9b09f8d7d18ede792368221d987
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
@@ -1355,7 +1355,7 @@ SPEC CHECKSUMS:
React-jsinspector: 85583ef014ce53d731a98c66a0e24496f7a83066
React-logger: 3eb80a977f0d9669468ef641a5e1fabbc50a09ec
React-Mapbuffer: 84ea43c6c6232049135b1550b8c60b2faac19fab
- react-native-applovin-max: baebbda602d07092625b19bcafe0114a389020d0
+ react-native-applovin-max: 905624ed030e548eb62a4a620195344489cc62a9
React-nativeconfig: b4d4e9901d4cabb57be63053fd2aa6086eb3c85f
React-NativeModulesApple: cd26e56d56350e123da0c1e3e4c76cb58a05e1ee
React-perflogger: 5f49905de275bac07ac7ea7f575a70611fa988f2
diff --git a/ios/AppLovinMAX.m b/ios/AppLovinMAX.m
index 1c1b3329..fbb02c4a 100644
--- a/ios/AppLovinMAX.m
+++ b/ios/AppLovinMAX.m
@@ -73,7 +73,7 @@ @interface AppLovinMAX()
@implementation AppLovinMAX
static NSString *const SDK_TAG = @"AppLovinSdk";
static NSString *const TAG = @"AppLovinMAX";
-static NSString *const PLUGIN_VERSION = @"8.0.5";
+static NSString *const PLUGIN_VERSION = @"8.1.0";
static NSString *const USER_GEOGRAPHY_GDPR = @"G";
static NSString *const USER_GEOGRAPHY_OTHER = @"O";
@@ -149,6 +149,7 @@ + (void)initialize
[super initialize];
ALCompatibleNativeSDKVersions = @{
+ @"8.1.0" : @"13.0.1",
@"8.0.5" : @"13.0.1",
@"8.0.4" : @"13.0.0",
@"8.0.3" : @"13.0.0",
diff --git a/package.json b/package.json
index 8a6ea91d..ebb99108 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "react-native-applovin-max",
"author": "AppLovin Corporation (https://applovin.com)",
- "version": "8.0.5",
+ "version": "8.1.0",
"description": "AppLovin MAX React Native Plugin for Android and iOS",
"main": "lib/commonjs/index",
"module": "lib/module/index",
diff --git a/react-native-applovin-max.podspec b/react-native-applovin-max.podspec
index a4051a61..a98dd78a 100644
--- a/react-native-applovin-max.podspec
+++ b/react-native-applovin-max.podspec
@@ -12,7 +12,7 @@ Pod::Spec.new do |s|
s.authors = package["author"]
s.platforms = { :ios => min_ios_version_supported }
- s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_8_0_5" }
+ s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_8_1_0" }
s.source_files = "ios/AppLovinMAX*.{h,m}"
diff --git a/src/AppLovinMAX.ts b/src/AppLovinMAX.ts
index 928fd9ec..2534052f 100644
--- a/src/AppLovinMAX.ts
+++ b/src/AppLovinMAX.ts
@@ -4,7 +4,7 @@ import type { Configuration } from './types/Configuration';
const NativeAppLovinMAX = NativeModules.AppLovinMAX;
-const VERSION = '8.0.5';
+const VERSION = '8.1.0';
/**
* This enum represents the user's geography used to determine the type of consent flow shown to the