Skip to content

Commit

Permalink
8.0.4 (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Oct 23, 2024
1 parent 871e6bb commit 4dc061b
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 8 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.0.4
* Update IconView to support native ad icon image view, primarily for BigoAds native ads.
## 8.0.3
* Remove deprecated Terms Flow API `AppLovinMAX.setConsentFlowEnabled()`. Check out our docs for integrating our latest [MAX Terms and Privacy Policy Consent Flow](https://developers.applovin.com/en/max/react-native/overview/terms-and-privacy-policy-flow/).
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", "8000300")
buildConfigField("String", "VERSION_NAME", "\"8.0.3\"")
buildConfigField("int", "VERSION_CODE", "8000400")
buildConfigField("String", "VERSION_NAME", "\"8.0.4\"")
}

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.3";
private static final String PLUGIN_VERSION = "8.0.4";

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.0.4", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "8.0.3", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "8.0.2", "13.0.0" );
ALCompatibleNativeSdkVersions.put( "8.0.1", "13.0.0" );
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.3";
static NSString *const PLUGIN_VERSION = @"8.0.4";

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.0.4" : @"13.0.0",
@"8.0.3" : @"13.0.0",
@"8.0.2" : @"13.0.0",
@"8.0.1" : @"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.3",
"version": "8.0.4",
"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_3" }
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_8_0_4" }

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.3';
const VERSION = '8.0.4';

/**
* This enum represents the user's geography used to determine the type of consent flow shown to the
Expand Down

0 comments on commit 4dc061b

Please sign in to comment.