react-native-applovin-max 5.7.1 → 5.7.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/mediation/adapters/GoogleMediationAdapter.java.saved +1711 -0
- package/android/src/main/java/com/applovin/mediation/adapters/MintegralMediationAdapter.java.saved +1448 -0
- package/package.json +1 -1
- package/react-native-applovin-max.podspec +1 -1
- package/src/index.js +6 -6
- package/ios/AppLovinMAX.xcworkspace/xcuserdata/thomasso.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/AppLovinMAX.xcworkspace/xcuserdata/thomasso.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -24
- package/src/.idea/modules.xml +0 -8
- package/src/.idea/src.iml +0 -8
- package/src/.idea/vcs.xml +0 -6
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.7.
|
|
4
|
+
"version": "5.7.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_7_2" }
|
|
15
15
|
|
|
16
16
|
s.source_files = "ios/AppLovinMAX*.{h,m}"
|
|
17
17
|
|
package/src/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import EventListeners from "./AppLovinMAXEventListeners";
|
|
|
6
6
|
|
|
7
7
|
const { AppLovinMAX } = NativeModules;
|
|
8
8
|
|
|
9
|
-
const VERSION = "5.7.
|
|
9
|
+
const VERSION = "5.7.2";
|
|
10
10
|
|
|
11
11
|
/*---------*/
|
|
12
12
|
/* BANNERS */
|
|
@@ -22,7 +22,7 @@ const setBannerExtraParameter = (adUnitId, key, value) => {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
const setBannerLocalExtraParameter = (adUnitId, key, value) => {
|
|
25
|
-
AppLovinMAX.setBannerLocalExtraParameter(adUnitId, {key:value});
|
|
25
|
+
AppLovinMAX.setBannerLocalExtraParameter(adUnitId, {[key]:value});
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
/*-------*/
|
|
@@ -39,7 +39,7 @@ const setMRecExtraParameter = (adUnitId, key, value) => {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
const setMRecLocalExtraParameter = (adUnitId, key, value) => {
|
|
42
|
-
AppLovinMAX.setMRecLocalExtraParameter(adUnitId, {key:value});
|
|
42
|
+
AppLovinMAX.setMRecLocalExtraParameter(adUnitId, {[key]:value});
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
/*---------------*/
|
|
@@ -73,7 +73,7 @@ const setInterstitialExtraParameter = (adUnitId, key, value) => {
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
const setInterstitialLocalExtraParameter = (adUnitId, key, value) => {
|
|
76
|
-
AppLovinMAX.setInterstitialLocalExtraParameter(adUnitId, {key:value});
|
|
76
|
+
AppLovinMAX.setInterstitialLocalExtraParameter(adUnitId, {[key]:value});
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
/*----------*/
|
|
@@ -107,7 +107,7 @@ const setRewardedAdExtraParameter = (adUnitId, key, value) => {
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
const setRewardedAdLocalExtraParameter = (adUnitId, key, value) => {
|
|
110
|
-
AppLovinMAX.setRewardedAdLocalExtraParameter(adUnitId, {key:value});
|
|
110
|
+
AppLovinMAX.setRewardedAdLocalExtraParameter(adUnitId, {[key]:value});
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
/*----------*/
|
|
@@ -141,7 +141,7 @@ const setAppOpenAdExtraParameter = (adUnitId, key, value) => {
|
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
const setAppOpenAdLocalExtraParameter = (adUnitId, key, value) => {
|
|
144
|
-
AppLovinMAX.setAppOpenAdLocalExtraParameter(adUnitId, {key:value});
|
|
144
|
+
AppLovinMAX.setAppOpenAdLocalExtraParameter(adUnitId, {[key]:value});
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
export default {
|
package/ios/AppLovinMAX.xcworkspace/xcuserdata/thomasso.xcuserdatad/UserInterfaceState.xcuserstate
DELETED
|
Binary file
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Bucket
|
|
3
|
-
uuid = "8322C692-8067-489C-89A1-217F139F4039"
|
|
4
|
-
type = "0"
|
|
5
|
-
version = "2.0">
|
|
6
|
-
<Breakpoints>
|
|
7
|
-
<BreakpointProxy
|
|
8
|
-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
|
|
9
|
-
<BreakpointContent
|
|
10
|
-
uuid = "1DACA5BD-D4D2-4CD6-BEFD-D951963D77E1"
|
|
11
|
-
shouldBeEnabled = "No"
|
|
12
|
-
ignoreCount = "0"
|
|
13
|
-
continueAfterRunningActions = "No"
|
|
14
|
-
filePath = "AppLovinMAX.m"
|
|
15
|
-
startingColumnNumber = "9223372036854775807"
|
|
16
|
-
endingColumnNumber = "9223372036854775807"
|
|
17
|
-
startingLineNumber = "1304"
|
|
18
|
-
endingLineNumber = "1304"
|
|
19
|
-
landmarkName = "-positionAdViewForAdUnitIdentifier:adFormat:"
|
|
20
|
-
landmarkType = "7">
|
|
21
|
-
</BreakpointContent>
|
|
22
|
-
</BreakpointProxy>
|
|
23
|
-
</Breakpoints>
|
|
24
|
-
</Bucket>
|
package/src/.idea/modules.xml
DELETED
package/src/.idea/src.iml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="WEB_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager">
|
|
4
|
-
<content url="file://$MODULE_DIR$" />
|
|
5
|
-
<orderEntry type="inheritedJdk" />
|
|
6
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
7
|
-
</component>
|
|
8
|
-
</module>
|