Skip to content

Commit

Permalink
2.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmso committed Dec 14, 2021
1 parent 5b6080f commit eb952b0
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
## 2.5.1
* Stop auto-refresh for native AdViews that have been removed from screen on Android.
## 2.5.0
* Update APIs for showing interstitials and rewarded ads. To show _without_ a placement, use `AppLovinMAX.showInterstitial(<Ad Unit ID>)` and `AppLovinMAX.showRewardedAd(<Ad Unit ID>)`. To show _with_ a placement, use `AppLovinMAX.showInterstitialWithPlacement(<Ad Unit ID>, <Placement>)` and `AppLovinMAX.showRewardedAdWithPlacement(<Ad Unit ID>, <Placement>)`.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 2050000
versionName "2.5.0"
versionCode 2050100
versionName "2.5.1"
}

flavorDimensions("default")
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",
"version": "2.5.0",
"version": "2.5.1",
"description": "AppLovin MAX React Native Plugin for Android and iOS",
"homepage": "https://github.com/AppLovin/AppLovin-MAX-React-Native",
"license": "MIT",
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 @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.authors = package["author"]

s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_2_5_0" }
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_2_5_1" }

s.source_files = "ios/AppLovinMAX*.{h,m}"

Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import AdView from "./AppLovinMAXAdView";

const { AppLovinMAX } = NativeModules;

const VERSION = "2.5.0";
const VERSION = "2.5.1";

/**
* This enum represents whether or not the consent dialog should be shown for this user.
Expand Down

0 comments on commit eb952b0

Please sign in to comment.