react-native-applovin-max 5.2.1 → 5.2.2
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.
- package/android/build.gradle +2 -2
- package/android/src/main/java/com/applovin/reactnative/AppLovinMAXAdView.java +1 -9
- package/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java +2 -2
- package/package.json +1 -1
- package/react-native-applovin-max.podspec +1 -1
- package/src/index.js +1 -1
package/android/build.gradle
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
package com.applovin.reactnative;
|
|
2
2
|
|
|
3
|
-
import android.app.Activity;
|
|
4
3
|
import android.content.Context;
|
|
5
4
|
import android.text.TextUtils;
|
|
6
5
|
|
|
@@ -199,13 +198,6 @@ class AppLovinMAXAdView
|
|
|
199
198
|
|
|
200
199
|
private void maybeAttachAdView()
|
|
201
200
|
{
|
|
202
|
-
final Activity currentActivity = reactContext.getCurrentActivity();
|
|
203
|
-
if ( currentActivity == null )
|
|
204
|
-
{
|
|
205
|
-
AppLovinMAXModule.e( "Unable to attach AdView - no current Activity found" );
|
|
206
|
-
return;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
201
|
// Re-assign in case of race condition
|
|
210
202
|
final String adUnitId = this.adUnitId;
|
|
211
203
|
final MaxAdFormat adFormat = this.adFormat;
|
|
@@ -239,7 +231,7 @@ class AppLovinMAXAdView
|
|
|
239
231
|
|
|
240
232
|
AppLovinMAXModule.d( "Attaching MaxAdView for " + adUnitId );
|
|
241
233
|
|
|
242
|
-
adView = new MaxAdView( adUnitId, adFormat, AppLovinMAXModule.getInstance().getSdk(),
|
|
234
|
+
adView = new MaxAdView( adUnitId, adFormat, AppLovinMAXModule.getInstance().getSdk(), reactContext );
|
|
243
235
|
adView.setListener( this );
|
|
244
236
|
adView.setRevenueListener( this );
|
|
245
237
|
adView.setPlacement( placement );
|
|
@@ -1274,7 +1274,7 @@ public class AppLovinMAXModule
|
|
|
1274
1274
|
promise.resolve( false );
|
|
1275
1275
|
return;
|
|
1276
1276
|
}
|
|
1277
|
-
|
|
1277
|
+
|
|
1278
1278
|
promise.resolve( rewardedAd.isReady() );
|
|
1279
1279
|
}
|
|
1280
1280
|
|
|
@@ -2101,7 +2101,7 @@ public class AppLovinMAXModule
|
|
|
2101
2101
|
MaxAdView result = mAdViews.get( adUnitId );
|
|
2102
2102
|
if ( result == null && adViewPosition != null && adViewOffsetPixels != null )
|
|
2103
2103
|
{
|
|
2104
|
-
result = new MaxAdView( adUnitId, adFormat, sdk,
|
|
2104
|
+
result = new MaxAdView( adUnitId, adFormat, sdk, getReactApplicationContext() );
|
|
2105
2105
|
result.setListener( this );
|
|
2106
2106
|
result.setRevenueListener( this );
|
|
2107
2107
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-applovin-max",
|
|
3
3
|
"author": "AppLovin Corporation",
|
|
4
|
-
"version": "5.2.
|
|
4
|
+
"version": "5.2.2",
|
|
5
5
|
"description": "AppLovin MAX React Native Plugin for Android and iOS",
|
|
6
6
|
"homepage": "https://github.com/AppLovin/AppLovin-MAX-React-Native",
|
|
7
7
|
"license": "MIT",
|
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.authors = package["author"]
|
|
12
12
|
|
|
13
13
|
s.platforms = { :ios => "10.0" }
|
|
14
|
-
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "
|
|
14
|
+
s.source = { :git => "https://github.com/AppLovin/AppLovin-MAX-React-Native.git", :tag => "release_5_2_2" }
|
|
15
15
|
|
|
16
16
|
s.source_files = "ios/AppLovinMAX*.{h,m}"
|
|
17
17
|
|