react-native-applovin-max 5.2.3 → 5.3.0
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/AppLovinMAXNativeAdView.java +10 -14
- package/ios/AppLovinMAXNativeAdView.m +3 -14
- package/package.json +1 -1
- package/react-native-applovin-max.podspec +1 -1
- package/src/NativeAdComponents.js +2 -2
- package/src/index.js +1 -1
package/android/build.gradle
CHANGED
|
@@ -357,6 +357,13 @@ public class AppLovinMAXNativeAdView
|
|
|
357
357
|
adLoader.b( ad );
|
|
358
358
|
}
|
|
359
359
|
|
|
360
|
+
// Reassure the size of `mediaView` and its children for the networks, such as
|
|
361
|
+
// LINE, where the actual ad contents are loaded after `mediaView` is sized.
|
|
362
|
+
if ( mediaView != null )
|
|
363
|
+
{
|
|
364
|
+
sizeToFit( mediaView, (ReactViewGroup) mediaView.getParent() );
|
|
365
|
+
}
|
|
366
|
+
|
|
360
367
|
isLoading.set( false );
|
|
361
368
|
}, 500L );
|
|
362
369
|
}
|
|
@@ -396,22 +403,11 @@ public class AppLovinMAXNativeAdView
|
|
|
396
403
|
nativeAdInfo.putDouble( "starRating", ad.getStarRating().doubleValue() );
|
|
397
404
|
}
|
|
398
405
|
|
|
406
|
+
// The aspect ratio can be 0.0f when it is not provided by the network.
|
|
399
407
|
float aspectRatio = ad.getMediaContentAspectRatio();
|
|
400
|
-
if (
|
|
401
|
-
{
|
|
402
|
-
// The aspect ratio can be 0.0f when it is not provided by the network.
|
|
403
|
-
if ( Math.signum( aspectRatio ) == 0 )
|
|
404
|
-
{
|
|
405
|
-
nativeAdInfo.putDouble( "mediaContentAspectRatio", 1.0 );
|
|
406
|
-
}
|
|
407
|
-
else
|
|
408
|
-
{
|
|
409
|
-
nativeAdInfo.putDouble( "mediaContentAspectRatio", aspectRatio );
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
else
|
|
408
|
+
if ( aspectRatio > 0 )
|
|
413
409
|
{
|
|
414
|
-
nativeAdInfo.putDouble( "mediaContentAspectRatio",
|
|
410
|
+
nativeAdInfo.putDouble( "mediaContentAspectRatio", aspectRatio );
|
|
415
411
|
}
|
|
416
412
|
|
|
417
413
|
nativeAdInfo.putBoolean( "isIconImageAvailable", ( ad.getIcon() != null ) );
|
|
@@ -305,21 +305,10 @@
|
|
|
305
305
|
nativeAdInfo[@"callToAction"] = ad.callToAction;
|
|
306
306
|
nativeAdInfo[@"starRating"] = ad.starRating;
|
|
307
307
|
|
|
308
|
-
|
|
308
|
+
// The aspect ratio can be 0.0f when it is not provided by the network.
|
|
309
|
+
if ( ad.mediaContentAspectRatio > 0 )
|
|
309
310
|
{
|
|
310
|
-
|
|
311
|
-
if ( fabs(ad.mediaContentAspectRatio) < FLT_EPSILON )
|
|
312
|
-
{
|
|
313
|
-
nativeAdInfo[@"mediaContentAspectRatio"] = @(1.0);
|
|
314
|
-
}
|
|
315
|
-
else
|
|
316
|
-
{
|
|
317
|
-
nativeAdInfo[@"mediaContentAspectRatio"] = @(ad.mediaContentAspectRatio);
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
else
|
|
321
|
-
{
|
|
322
|
-
nativeAdInfo[@"mediaContentAspectRatio"] = @(1.0);
|
|
311
|
+
nativeAdInfo[@"mediaContentAspectRatio"] = @(ad.mediaContentAspectRatio);
|
|
323
312
|
}
|
|
324
313
|
|
|
325
314
|
nativeAdInfo[@"isIconImageAvailable"] = @(ad.icon != nil);
|
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.
|
|
4
|
+
"version": "5.3.0",
|
|
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_3_0" }
|
|
15
15
|
|
|
16
16
|
s.source_files = "ios/AppLovinMAX*.{h,m}"
|
|
17
17
|
|
|
@@ -94,12 +94,12 @@ export const IconView = (props) => {
|
|
|
94
94
|
const {nativeAd, nativeAdView} = useContext(NativeAdViewContext);
|
|
95
95
|
|
|
96
96
|
useEffect(() => {
|
|
97
|
-
if (!nativeAdView || !nativeAd.image) return;
|
|
97
|
+
if (!nativeAdView || !nativeAd.image || !imageRef.current) return;
|
|
98
98
|
|
|
99
99
|
nativeAdView.setNativeProps({
|
|
100
100
|
iconView: findNodeHandle(imageRef.current),
|
|
101
101
|
});
|
|
102
|
-
}, [nativeAd, nativeAdView]);
|
|
102
|
+
}, [nativeAd, nativeAdView, imageRef.current]);
|
|
103
103
|
|
|
104
104
|
if (!nativeAdView) return null;
|
|
105
105
|
|