react-native-applovin-max 9.3.0 → 9.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -53,7 +53,7 @@ android {
53
53
  minSdkVersion getExtOrIntegerDefault("minSdkVersion")
54
54
  targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
55
55
 
56
- buildConfigField("String", "VERSION_NAME", "\"9.3.0\"")
56
+ buildConfigField("String", "VERSION_NAME", "\"9.3.1\"")
57
57
  buildConfigField("boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString())
58
58
  }
59
59
 
@@ -79,7 +79,7 @@ public class AppLovinMAXModuleImpl
79
79
  {
80
80
  private static final String SDK_TAG = "AppLovinSdk";
81
81
  private static final String TAG = "AppLovinMAXModule";
82
- private static final String PLUGIN_VERSION = "9.3.0";
82
+ private static final String PLUGIN_VERSION = "9.3.1";
83
83
 
84
84
  private static final String USER_GEOGRAPHY_GDPR = "G";
85
85
  private static final String USER_GEOGRAPHY_OTHER = "O";
@@ -101,6 +101,7 @@ public class AppLovinMAXModuleImpl
101
101
 
102
102
  static
103
103
  {
104
+ ALCompatibleNativeSdkVersions.put( "9.3.1", "13.4.0" );
104
105
  ALCompatibleNativeSdkVersions.put( "9.3.0", "13.4.0" );
105
106
  ALCompatibleNativeSdkVersions.put( "9.2.1", "13.3.1" );
106
107
  ALCompatibleNativeSdkVersions.put( "9.2.0", "13.3.0" );
@@ -127,4 +127,10 @@ public class AppLovinMAXNativeAdViewManager
127
127
  {
128
128
  AppLovinMAXNativeAdViewManagerImpl.renderNativeAd( view );
129
129
  }
130
+
131
+ @Override
132
+ public void destroyAd(final AppLovinMAXNativeAdView view)
133
+ {
134
+ AppLovinMAXNativeAdViewManagerImpl.destroy( view );
135
+ }
130
136
  }
@@ -73,7 +73,7 @@
73
73
  @implementation AppLovinMAX
74
74
  static NSString *const SDK_TAG = @"AppLovinSdk";
75
75
  static NSString *const TAG = @"AppLovinMAX";
76
- static NSString *const PLUGIN_VERSION = @"9.3.0";
76
+ static NSString *const PLUGIN_VERSION = @"9.3.1";
77
77
 
78
78
  static NSString *const USER_GEOGRAPHY_GDPR = @"G";
79
79
  static NSString *const USER_GEOGRAPHY_OTHER = @"O";
@@ -149,6 +149,7 @@ RCT_EXPORT_MODULE()
149
149
  [super initialize];
150
150
 
151
151
  ALCompatibleNativeSDKVersions = @{
152
+ @"9.3.1" : @"13.4.0",
152
153
  @"9.3.0" : @"13.4.0",
153
154
  @"9.2.1" : @"13.3.1",
154
155
  @"9.2.0" : @"13.3.0",
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.default = exports.ConsentFlowUserGeography = exports.CMPErrorCode = exports.AppTrackingStatus = exports.AppLovinMAX = void 0;
7
7
  var _NativeAppLovinMAXModule = _interopRequireDefault(require("./specs/NativeAppLovinMAXModule"));
8
8
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
9
- const VERSION = '9.3.0';
9
+ const VERSION = '9.3.1';
10
10
 
11
11
  /**
12
12
  * Represents the user's geography, used to determine which type of consent flow to display.
@@ -1,5 +1,5 @@
1
1
  import NativeAppLovinMAX from './specs/NativeAppLovinMAXModule';
2
- const VERSION = '9.3.0';
2
+ const VERSION = '9.3.1';
3
3
 
4
4
  /**
5
5
  * Represents the user's geography, used to determine which type of consent flow to display.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-applovin-max",
3
3
  "author": "AppLovin Corporation <support@applovin.com> (https://applovin.com)",
4
- "version": "9.3.0",
4
+ "version": "9.3.1",
5
5
  "description": "AppLovin MAX React Native Plugin for Android and iOS",
6
6
  "main": "lib/commonjs/index",
7
7
  "module": "lib/module/index",
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
11
11
  s.authors = package["author"]
12
12
 
13
13
  s.platforms = { :ios => min_ios_version_supported }
14
- s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_9_3_0" }
14
+ s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_9_3_1" }
15
15
 
16
16
  s.source_files = "ios/AppLovinMAX*.{h,mm}"
17
17
 
@@ -2,7 +2,7 @@ import type { AppLovinMAXType } from './types/AppLovinMAX';
2
2
  import type { Configuration } from './types/Configuration';
3
3
  import NativeAppLovinMAX from './specs/NativeAppLovinMAXModule';
4
4
 
5
- const VERSION = '9.3.0';
5
+ const VERSION = '9.3.1';
6
6
 
7
7
  /**
8
8
  * Represents the user's geography, used to determine which type of consent flow to display.