Skip to content

Commit

Permalink
8.1.0 (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Nov 28, 2024
1 parent ec0ec4a commit de14c34
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Versions

## x.x.x
## 8.1.0
* Enhance banner and MREC (`<AdView/>`) preloading to support preloading multiple `<AdView/>` instances.
## 8.0.5
* Depend on Android SDK 13.0.1 and iOS SDK 13.0.1.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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" );
Expand Down
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion ios/AppLovinMAX.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-applovin-max",
"author": "AppLovin Corporation <support@applovin.com> (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",
Expand Down
2 changes: 1 addition & 1 deletion react-native-applovin-max.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down
2 changes: 1 addition & 1 deletion src/AppLovinMAX.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit de14c34

Please sign in to comment.