Skip to content

Commit

Permalink
7.0.1 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Jul 19, 2024
1 parent d92cc0b commit 5af5092
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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
## 7.0.1
* Fix native UI component banners and MRECs (`<AdView/>`) not calling the `onAdLoaded` and `onAdLoadFailed` callbacks on Android. Regression from v7.0.0. (https://github.com/AppLovin/AppLovin-MAX-React-Native/issues/354)
## 7.0.0
* Add APIs for preloading native UI component banners and MRECs. For more info, check out our [docs](https://developers.applovin.com/en/react-native/ad-formats/banner-and-mrec-ads#preloading-native-ui-component).
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", "7000000")
buildConfigField("String", "VERSION_NAME", "\"7.0.0\"")
buildConfigField("int", "VERSION_CODE", "7000100")
buildConfigField("String", "VERSION_NAME", "\"7.0.1\"")
}

buildTypes {
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 <[email protected]> (https://applovin.com)",
"version": "7.0.0",
"version": "7.0.1",
"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_7_0_0" }
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_7_0_1" }

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 = '7.0.0';
const VERSION = '7.0.1';

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

0 comments on commit 5af5092

Please sign in to comment.