Skip to content

Commit

Permalink
6.1.1 (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
alhiwatan authored Dec 7, 2023
1 parent 7dcac81 commit 3b05ae5
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
## 6.1.1
* Allow calls to `AppLovinMAX.setMuted(...)` before SDK is initialized.
* Improve loading time for native ads. (https://github.com/AppLovin/AppLovin-MAX-React-Native/issues/273)
* Depend on Android SDK 12.1.0 and iOS SDK 12.1.0.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion getExtOrIntegerDefault('targetSdkVersion')
versionCode 6010000
versionName "6.1.0"
versionCode 6010100
versionName "6.1.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": "6.1.0",
"version": "6.1.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_6_1_0" }
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_6_1_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 = '6.1.0';
const VERSION = '6.1.1';

const initialize = async (sdkKey: string): Promise<Configuration> => {
return NativeAppLovinMAX.initialize(VERSION, sdkKey);
Expand Down

0 comments on commit 3b05ae5

Please sign in to comment.