react-native-applovin-max 6.5.0 → 7.0.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.
Files changed (238) hide show
  1. package/android/build.gradle +46 -100
  2. package/android/gradle.properties +4 -4
  3. package/android/src/main/AndroidManifest.xml +2 -2
  4. package/android/src/main/AndroidManifestNew.xml +2 -0
  5. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXAdView.java +123 -163
  6. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXAdViewManager.java +24 -17
  7. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXAdViewUiComponent.java +242 -0
  8. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXModule.java +297 -336
  9. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXNativeAdView.java +13 -12
  10. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXNativeAdViewManager.java +11 -14
  11. package/android/src/main/java/com/applovin/reactnative/AppLovinMAXPackage.java +3 -3
  12. package/ios/AppLovinMAX.h +1 -1
  13. package/ios/AppLovinMAX.m +62 -12
  14. package/ios/AppLovinMAXAdView.h +12 -0
  15. package/ios/AppLovinMAXAdView.m +120 -142
  16. package/ios/AppLovinMAXAdViewUIComponent.h +27 -0
  17. package/ios/AppLovinMAXAdViewUIComponent.m +199 -0
  18. package/lib/commonjs/AdView.js +348 -0
  19. package/lib/commonjs/AdView.js.map +1 -0
  20. package/lib/commonjs/AppLovinMAX.js +52 -0
  21. package/lib/commonjs/AppLovinMAX.js.map +1 -0
  22. package/lib/commonjs/AppOpenAd.js +102 -0
  23. package/lib/commonjs/AppOpenAd.js.map +1 -0
  24. package/lib/commonjs/BannerAd.js +139 -0
  25. package/lib/commonjs/BannerAd.js.map +1 -0
  26. package/lib/commonjs/EventEmitter.js +32 -0
  27. package/lib/commonjs/EventEmitter.js.map +1 -0
  28. package/lib/commonjs/InterstitialAd.js +102 -0
  29. package/lib/commonjs/InterstitialAd.js.map +1 -0
  30. package/lib/commonjs/MRecAd.js +117 -0
  31. package/lib/commonjs/MRecAd.js.map +1 -0
  32. package/lib/commonjs/Privacy.js +12 -0
  33. package/lib/commonjs/Privacy.js.map +1 -0
  34. package/lib/commonjs/RewardedAd.js +116 -0
  35. package/lib/commonjs/RewardedAd.js.map +1 -0
  36. package/lib/commonjs/TargetingData.js +179 -0
  37. package/lib/commonjs/TargetingData.js.map +1 -0
  38. package/lib/commonjs/index.js +256 -0
  39. package/lib/commonjs/index.js.map +1 -0
  40. package/lib/commonjs/nativeAd/NativeAdView.js +147 -0
  41. package/lib/commonjs/nativeAd/NativeAdView.js.map +1 -0
  42. package/lib/commonjs/nativeAd/NativeAdViewComponents.js +197 -0
  43. package/lib/commonjs/nativeAd/NativeAdViewComponents.js.map +1 -0
  44. package/lib/commonjs/nativeAd/NativeAdViewProvider.js +37 -0
  45. package/lib/commonjs/nativeAd/NativeAdViewProvider.js.map +1 -0
  46. package/lib/commonjs/types/AdEvent.js +6 -0
  47. package/lib/commonjs/types/AdEvent.js.map +1 -0
  48. package/lib/commonjs/types/AdInfo.js +48 -0
  49. package/lib/commonjs/types/AdInfo.js.map +1 -0
  50. package/lib/commonjs/types/AdProps.js +6 -0
  51. package/lib/commonjs/types/AdProps.js.map +1 -0
  52. package/lib/commonjs/types/AdViewProps.js +6 -0
  53. package/lib/commonjs/types/AdViewProps.js.map +1 -0
  54. package/lib/commonjs/types/AppLovinMAX.js +6 -0
  55. package/lib/commonjs/types/AppLovinMAX.js.map +1 -0
  56. package/lib/commonjs/types/AppOpenAd.js +6 -0
  57. package/lib/commonjs/types/AppOpenAd.js.map +1 -0
  58. package/lib/commonjs/types/BannerAd.js +6 -0
  59. package/lib/commonjs/types/BannerAd.js.map +1 -0
  60. package/lib/commonjs/types/CMPError.js +6 -0
  61. package/lib/commonjs/types/CMPError.js.map +1 -0
  62. package/lib/commonjs/types/Configuration.js +6 -0
  63. package/lib/commonjs/types/Configuration.js.map +1 -0
  64. package/lib/commonjs/types/FullscreenAd.js +6 -0
  65. package/lib/commonjs/types/FullscreenAd.js.map +1 -0
  66. package/lib/commonjs/types/InterstitialAd.js +6 -0
  67. package/lib/commonjs/types/InterstitialAd.js.map +1 -0
  68. package/lib/commonjs/types/MRecAd.js +6 -0
  69. package/lib/commonjs/types/MRecAd.js.map +1 -0
  70. package/lib/commonjs/types/NativeAd.js +2 -0
  71. package/lib/commonjs/types/NativeAd.js.map +1 -0
  72. package/lib/commonjs/types/NativeAdViewProps.js +6 -0
  73. package/lib/commonjs/types/NativeAdViewProps.js.map +1 -0
  74. package/lib/commonjs/types/Privacy.js +2 -0
  75. package/lib/commonjs/types/Privacy.js.map +1 -0
  76. package/lib/commonjs/types/RewardedAd.js +6 -0
  77. package/lib/commonjs/types/RewardedAd.js.map +1 -0
  78. package/lib/commonjs/types/TargetingData.js +6 -0
  79. package/lib/commonjs/types/TargetingData.js.map +1 -0
  80. package/lib/commonjs/types/ViewAd.js +6 -0
  81. package/lib/commonjs/types/ViewAd.js.map +1 -0
  82. package/lib/commonjs/types/index.js +61 -0
  83. package/lib/commonjs/types/index.js.map +1 -0
  84. package/lib/module/AdView.js +335 -0
  85. package/lib/module/AdView.js.map +1 -0
  86. package/lib/module/AppLovinMAX.js +48 -0
  87. package/lib/module/AppLovinMAX.js.map +1 -0
  88. package/lib/module/AppOpenAd.js +96 -0
  89. package/lib/module/AppOpenAd.js.map +1 -0
  90. package/lib/module/BannerAd.js +133 -0
  91. package/lib/module/BannerAd.js.map +1 -0
  92. package/lib/module/EventEmitter.js +24 -0
  93. package/lib/module/EventEmitter.js.map +1 -0
  94. package/lib/module/InterstitialAd.js +96 -0
  95. package/lib/module/InterstitialAd.js.map +1 -0
  96. package/lib/module/MRecAd.js +111 -0
  97. package/lib/module/MRecAd.js.map +1 -0
  98. package/lib/module/Privacy.js +6 -0
  99. package/lib/module/Privacy.js.map +1 -0
  100. package/lib/module/RewardedAd.js +110 -0
  101. package/lib/module/RewardedAd.js.map +1 -0
  102. package/lib/module/TargetingData.js +175 -0
  103. package/lib/module/TargetingData.js.map +1 -0
  104. package/lib/module/index.js +14 -0
  105. package/lib/module/index.js.map +1 -0
  106. package/lib/module/nativeAd/NativeAdView.js +139 -0
  107. package/lib/module/nativeAd/NativeAdView.js.map +1 -0
  108. package/lib/module/nativeAd/NativeAdViewComponents.js +181 -0
  109. package/lib/module/nativeAd/NativeAdViewComponents.js.map +1 -0
  110. package/lib/module/nativeAd/NativeAdViewProvider.js +28 -0
  111. package/lib/module/nativeAd/NativeAdViewProvider.js.map +1 -0
  112. package/lib/module/types/AdEvent.js +2 -0
  113. package/lib/module/types/AdEvent.js.map +1 -0
  114. package/lib/module/types/AdInfo.js +52 -0
  115. package/lib/module/types/AdInfo.js.map +1 -0
  116. package/lib/module/types/AdProps.js +2 -0
  117. package/lib/module/types/AdProps.js.map +1 -0
  118. package/lib/module/types/AdViewProps.js +2 -0
  119. package/lib/module/types/AdViewProps.js.map +1 -0
  120. package/lib/module/types/AppLovinMAX.js +2 -0
  121. package/lib/module/types/AppLovinMAX.js.map +1 -0
  122. package/lib/module/types/AppOpenAd.js +2 -0
  123. package/lib/module/types/AppOpenAd.js.map +1 -0
  124. package/lib/module/types/BannerAd.js +2 -0
  125. package/lib/module/types/BannerAd.js.map +1 -0
  126. package/lib/module/types/CMPError.js +2 -0
  127. package/lib/module/types/CMPError.js.map +1 -0
  128. package/lib/module/types/Configuration.js +2 -0
  129. package/lib/module/types/Configuration.js.map +1 -0
  130. package/lib/module/types/FullscreenAd.js +2 -0
  131. package/lib/module/types/FullscreenAd.js.map +1 -0
  132. package/lib/module/types/InterstitialAd.js +2 -0
  133. package/lib/module/types/InterstitialAd.js.map +1 -0
  134. package/lib/module/types/MRecAd.js +2 -0
  135. package/lib/module/types/MRecAd.js.map +1 -0
  136. package/lib/module/types/NativeAd.js +2 -0
  137. package/lib/module/types/NativeAd.js.map +1 -0
  138. package/lib/module/types/NativeAdViewProps.js +2 -0
  139. package/lib/module/types/NativeAdViewProps.js.map +1 -0
  140. package/lib/module/types/Privacy.js +2 -0
  141. package/lib/module/types/Privacy.js.map +1 -0
  142. package/lib/module/types/RewardedAd.js +2 -0
  143. package/lib/module/types/RewardedAd.js.map +1 -0
  144. package/lib/module/types/TargetingData.js +2 -0
  145. package/lib/module/types/TargetingData.js.map +1 -0
  146. package/lib/module/types/ViewAd.js +2 -0
  147. package/lib/module/types/ViewAd.js.map +1 -0
  148. package/lib/module/types/index.js +6 -0
  149. package/lib/module/types/index.js.map +1 -0
  150. package/lib/typescript/src/AdView.d.ts +115 -0
  151. package/lib/typescript/src/AdView.d.ts.map +1 -0
  152. package/lib/typescript/src/AppLovinMAX.d.ts +73 -0
  153. package/lib/typescript/src/AppLovinMAX.d.ts.map +1 -0
  154. package/lib/typescript/src/AppOpenAd.d.ts +4 -0
  155. package/lib/typescript/src/AppOpenAd.d.ts.map +1 -0
  156. package/lib/typescript/src/BannerAd.d.ts +4 -0
  157. package/lib/typescript/src/BannerAd.d.ts.map +1 -0
  158. package/lib/typescript/src/EventEmitter.d.ts +4 -0
  159. package/lib/typescript/src/EventEmitter.d.ts.map +1 -0
  160. package/lib/typescript/src/InterstitialAd.d.ts +4 -0
  161. package/lib/typescript/src/InterstitialAd.d.ts.map +1 -0
  162. package/lib/typescript/src/MRecAd.d.ts +4 -0
  163. package/lib/typescript/src/MRecAd.d.ts.map +1 -0
  164. package/lib/typescript/src/Privacy.d.ts +3 -0
  165. package/lib/typescript/src/Privacy.d.ts.map +1 -0
  166. package/lib/typescript/src/RewardedAd.d.ts +4 -0
  167. package/lib/typescript/src/RewardedAd.d.ts.map +1 -0
  168. package/lib/typescript/src/TargetingData.d.ts +26 -0
  169. package/lib/typescript/src/TargetingData.d.ts.map +1 -0
  170. package/lib/typescript/src/index.d.ts +14 -0
  171. package/lib/typescript/src/index.d.ts.map +1 -0
  172. package/lib/typescript/src/nativeAd/NativeAdView.d.ts +42 -0
  173. package/lib/typescript/src/nativeAd/NativeAdView.d.ts.map +1 -0
  174. package/lib/typescript/src/nativeAd/NativeAdViewComponents.d.ts +11 -0
  175. package/lib/typescript/src/nativeAd/NativeAdViewComponents.d.ts.map +1 -0
  176. package/lib/typescript/src/nativeAd/NativeAdViewProvider.d.ts +16 -0
  177. package/lib/typescript/src/nativeAd/NativeAdViewProvider.d.ts.map +1 -0
  178. package/lib/typescript/src/types/AdEvent.d.ts +15 -0
  179. package/lib/typescript/src/types/AdEvent.d.ts.map +1 -0
  180. package/lib/typescript/src/types/AdInfo.d.ts +295 -0
  181. package/lib/typescript/src/types/AdInfo.d.ts.map +1 -0
  182. package/lib/typescript/src/types/AdProps.d.ts +58 -0
  183. package/lib/typescript/src/types/AdProps.d.ts.map +1 -0
  184. package/lib/typescript/src/types/AdViewProps.d.ts +73 -0
  185. package/lib/typescript/src/types/AdViewProps.d.ts.map +1 -0
  186. package/lib/typescript/src/types/AppLovinMAX.d.ts +133 -0
  187. package/lib/typescript/src/types/AppLovinMAX.d.ts.map +1 -0
  188. package/lib/typescript/src/types/AppOpenAd.d.ts +3 -0
  189. package/lib/typescript/src/types/AppOpenAd.d.ts.map +1 -0
  190. package/lib/typescript/src/types/BannerAd.d.ts +42 -0
  191. package/lib/typescript/src/types/BannerAd.d.ts.map +1 -0
  192. package/lib/typescript/src/types/CMPError.d.ts +20 -0
  193. package/lib/typescript/src/types/CMPError.d.ts.map +1 -0
  194. package/lib/typescript/src/types/Configuration.d.ts +33 -0
  195. package/lib/typescript/src/types/Configuration.d.ts.map +1 -0
  196. package/lib/typescript/src/types/FullscreenAd.d.ts +123 -0
  197. package/lib/typescript/src/types/FullscreenAd.d.ts.map +1 -0
  198. package/lib/typescript/src/types/InterstitialAd.d.ts +3 -0
  199. package/lib/typescript/src/types/InterstitialAd.d.ts.map +1 -0
  200. package/lib/typescript/src/types/MRecAd.d.ts +12 -0
  201. package/lib/typescript/src/types/MRecAd.d.ts.map +1 -0
  202. package/lib/typescript/src/types/NativeAd.d.ts +42 -0
  203. package/lib/typescript/src/types/NativeAd.d.ts.map +1 -0
  204. package/lib/typescript/src/types/NativeAdViewProps.d.ts +15 -0
  205. package/lib/typescript/src/types/NativeAdViewProps.d.ts.map +1 -0
  206. package/lib/typescript/src/types/Privacy.d.ts +35 -0
  207. package/lib/typescript/src/types/Privacy.d.ts.map +1 -0
  208. package/lib/typescript/src/types/RewardedAd.d.ts +18 -0
  209. package/lib/typescript/src/types/RewardedAd.d.ts.map +1 -0
  210. package/lib/typescript/src/types/TargetingData.d.ts +43 -0
  211. package/lib/typescript/src/types/TargetingData.d.ts.map +1 -0
  212. package/lib/typescript/src/types/ViewAd.d.ts +141 -0
  213. package/lib/typescript/src/types/ViewAd.d.ts.map +1 -0
  214. package/lib/typescript/src/types/index.d.ts +6 -0
  215. package/lib/typescript/src/types/index.d.ts.map +1 -0
  216. package/package.json +102 -21
  217. package/react-native-applovin-max.podspec +29 -5
  218. package/src/AdView.tsx +83 -26
  219. package/src/AppLovinMAX.ts +1 -1
  220. package/src/InterstitialAd.ts +1 -3
  221. package/src/MRecAd.ts +2 -8
  222. package/src/TargetingData.ts +2 -15
  223. package/src/index.ts +9 -10
  224. package/src/nativeAd/NativeAdView.tsx +33 -49
  225. package/src/nativeAd/NativeAdViewComponents.tsx +22 -31
  226. package/src/types/AdViewProps.ts +29 -1
  227. package/android/.project +0 -17
  228. package/android/.settings/org.eclipse.buildship.core.prefs +0 -13
  229. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  230. package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
  231. package/android/gradlew +0 -172
  232. package/android/gradlew.bat +0 -84
  233. package/ios/AppLovinMAX.xcodeproj/project.pbxproj +0 -368
  234. package/ios/AppLovinMAX.xcodeproj/xcshareddata/xcschemes/AppLovinMAX.xcscheme +0 -67
  235. package/ios/AppLovinMAX.xcworkspace/contents.xcworkspacedata +0 -10
  236. package/ios/AppLovinMAX.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  237. package/ios/Podfile +0 -40
  238. package/ios/Podfile.lock +0 -373
package/ios/Podfile.lock DELETED
@@ -1,373 +0,0 @@
1
- PODS:
2
- - AppLovinSDK (12.5.0)
3
- - boost-for-react-native (1.63.0)
4
- - DoubleConversion (1.1.6)
5
- - FBLazyVector (0.63.5)
6
- - FBReactNativeSpec (0.63.5):
7
- - Folly (= 2020.01.13.00)
8
- - RCTRequired (= 0.63.5)
9
- - RCTTypeSafety (= 0.63.5)
10
- - React-Core (= 0.63.5)
11
- - React-jsi (= 0.63.5)
12
- - ReactCommon/turbomodule/core (= 0.63.5)
13
- - Folly (2020.01.13.00):
14
- - boost-for-react-native
15
- - DoubleConversion
16
- - Folly/Default (= 2020.01.13.00)
17
- - glog
18
- - Folly/Default (2020.01.13.00):
19
- - boost-for-react-native
20
- - DoubleConversion
21
- - glog
22
- - glog (0.3.5)
23
- - RCTRequired (0.63.5)
24
- - RCTTypeSafety (0.63.5):
25
- - FBLazyVector (= 0.63.5)
26
- - Folly (= 2020.01.13.00)
27
- - RCTRequired (= 0.63.5)
28
- - React-Core (= 0.63.5)
29
- - React (0.63.5):
30
- - React-Core (= 0.63.5)
31
- - React-Core/DevSupport (= 0.63.5)
32
- - React-Core/RCTWebSocket (= 0.63.5)
33
- - React-RCTActionSheet (= 0.63.5)
34
- - React-RCTAnimation (= 0.63.5)
35
- - React-RCTBlob (= 0.63.5)
36
- - React-RCTImage (= 0.63.5)
37
- - React-RCTLinking (= 0.63.5)
38
- - React-RCTNetwork (= 0.63.5)
39
- - React-RCTSettings (= 0.63.5)
40
- - React-RCTText (= 0.63.5)
41
- - React-RCTVibration (= 0.63.5)
42
- - React-callinvoker (0.63.5)
43
- - React-Core (0.63.5):
44
- - Folly (= 2020.01.13.00)
45
- - glog
46
- - React-Core/Default (= 0.63.5)
47
- - React-cxxreact (= 0.63.5)
48
- - React-jsi (= 0.63.5)
49
- - React-jsiexecutor (= 0.63.5)
50
- - Yoga
51
- - React-Core/CoreModulesHeaders (0.63.5):
52
- - Folly (= 2020.01.13.00)
53
- - glog
54
- - React-Core/Default
55
- - React-cxxreact (= 0.63.5)
56
- - React-jsi (= 0.63.5)
57
- - React-jsiexecutor (= 0.63.5)
58
- - Yoga
59
- - React-Core/Default (0.63.5):
60
- - Folly (= 2020.01.13.00)
61
- - glog
62
- - React-cxxreact (= 0.63.5)
63
- - React-jsi (= 0.63.5)
64
- - React-jsiexecutor (= 0.63.5)
65
- - Yoga
66
- - React-Core/DevSupport (0.63.5):
67
- - Folly (= 2020.01.13.00)
68
- - glog
69
- - React-Core/Default (= 0.63.5)
70
- - React-Core/RCTWebSocket (= 0.63.5)
71
- - React-cxxreact (= 0.63.5)
72
- - React-jsi (= 0.63.5)
73
- - React-jsiexecutor (= 0.63.5)
74
- - React-jsinspector (= 0.63.5)
75
- - Yoga
76
- - React-Core/RCTActionSheetHeaders (0.63.5):
77
- - Folly (= 2020.01.13.00)
78
- - glog
79
- - React-Core/Default
80
- - React-cxxreact (= 0.63.5)
81
- - React-jsi (= 0.63.5)
82
- - React-jsiexecutor (= 0.63.5)
83
- - Yoga
84
- - React-Core/RCTAnimationHeaders (0.63.5):
85
- - Folly (= 2020.01.13.00)
86
- - glog
87
- - React-Core/Default
88
- - React-cxxreact (= 0.63.5)
89
- - React-jsi (= 0.63.5)
90
- - React-jsiexecutor (= 0.63.5)
91
- - Yoga
92
- - React-Core/RCTBlobHeaders (0.63.5):
93
- - Folly (= 2020.01.13.00)
94
- - glog
95
- - React-Core/Default
96
- - React-cxxreact (= 0.63.5)
97
- - React-jsi (= 0.63.5)
98
- - React-jsiexecutor (= 0.63.5)
99
- - Yoga
100
- - React-Core/RCTImageHeaders (0.63.5):
101
- - Folly (= 2020.01.13.00)
102
- - glog
103
- - React-Core/Default
104
- - React-cxxreact (= 0.63.5)
105
- - React-jsi (= 0.63.5)
106
- - React-jsiexecutor (= 0.63.5)
107
- - Yoga
108
- - React-Core/RCTLinkingHeaders (0.63.5):
109
- - Folly (= 2020.01.13.00)
110
- - glog
111
- - React-Core/Default
112
- - React-cxxreact (= 0.63.5)
113
- - React-jsi (= 0.63.5)
114
- - React-jsiexecutor (= 0.63.5)
115
- - Yoga
116
- - React-Core/RCTNetworkHeaders (0.63.5):
117
- - Folly (= 2020.01.13.00)
118
- - glog
119
- - React-Core/Default
120
- - React-cxxreact (= 0.63.5)
121
- - React-jsi (= 0.63.5)
122
- - React-jsiexecutor (= 0.63.5)
123
- - Yoga
124
- - React-Core/RCTSettingsHeaders (0.63.5):
125
- - Folly (= 2020.01.13.00)
126
- - glog
127
- - React-Core/Default
128
- - React-cxxreact (= 0.63.5)
129
- - React-jsi (= 0.63.5)
130
- - React-jsiexecutor (= 0.63.5)
131
- - Yoga
132
- - React-Core/RCTTextHeaders (0.63.5):
133
- - Folly (= 2020.01.13.00)
134
- - glog
135
- - React-Core/Default
136
- - React-cxxreact (= 0.63.5)
137
- - React-jsi (= 0.63.5)
138
- - React-jsiexecutor (= 0.63.5)
139
- - Yoga
140
- - React-Core/RCTVibrationHeaders (0.63.5):
141
- - Folly (= 2020.01.13.00)
142
- - glog
143
- - React-Core/Default
144
- - React-cxxreact (= 0.63.5)
145
- - React-jsi (= 0.63.5)
146
- - React-jsiexecutor (= 0.63.5)
147
- - Yoga
148
- - React-Core/RCTWebSocket (0.63.5):
149
- - Folly (= 2020.01.13.00)
150
- - glog
151
- - React-Core/Default (= 0.63.5)
152
- - React-cxxreact (= 0.63.5)
153
- - React-jsi (= 0.63.5)
154
- - React-jsiexecutor (= 0.63.5)
155
- - Yoga
156
- - React-CoreModules (0.63.5):
157
- - FBReactNativeSpec (= 0.63.5)
158
- - Folly (= 2020.01.13.00)
159
- - RCTTypeSafety (= 0.63.5)
160
- - React-Core/CoreModulesHeaders (= 0.63.5)
161
- - React-jsi (= 0.63.5)
162
- - React-RCTImage (= 0.63.5)
163
- - ReactCommon/turbomodule/core (= 0.63.5)
164
- - React-cxxreact (0.63.5):
165
- - boost-for-react-native (= 1.63.0)
166
- - DoubleConversion
167
- - Folly (= 2020.01.13.00)
168
- - glog
169
- - React-callinvoker (= 0.63.5)
170
- - React-jsinspector (= 0.63.5)
171
- - React-jsi (0.63.5):
172
- - boost-for-react-native (= 1.63.0)
173
- - DoubleConversion
174
- - Folly (= 2020.01.13.00)
175
- - glog
176
- - React-jsi/Default (= 0.63.5)
177
- - React-jsi/Default (0.63.5):
178
- - boost-for-react-native (= 1.63.0)
179
- - DoubleConversion
180
- - Folly (= 2020.01.13.00)
181
- - glog
182
- - React-jsiexecutor (0.63.5):
183
- - DoubleConversion
184
- - Folly (= 2020.01.13.00)
185
- - glog
186
- - React-cxxreact (= 0.63.5)
187
- - React-jsi (= 0.63.5)
188
- - React-jsinspector (0.63.5)
189
- - React-RCTActionSheet (0.63.5):
190
- - React-Core/RCTActionSheetHeaders (= 0.63.5)
191
- - React-RCTAnimation (0.63.5):
192
- - FBReactNativeSpec (= 0.63.5)
193
- - Folly (= 2020.01.13.00)
194
- - RCTTypeSafety (= 0.63.5)
195
- - React-Core/RCTAnimationHeaders (= 0.63.5)
196
- - React-jsi (= 0.63.5)
197
- - ReactCommon/turbomodule/core (= 0.63.5)
198
- - React-RCTBlob (0.63.5):
199
- - FBReactNativeSpec (= 0.63.5)
200
- - Folly (= 2020.01.13.00)
201
- - React-Core/RCTBlobHeaders (= 0.63.5)
202
- - React-Core/RCTWebSocket (= 0.63.5)
203
- - React-jsi (= 0.63.5)
204
- - React-RCTNetwork (= 0.63.5)
205
- - ReactCommon/turbomodule/core (= 0.63.5)
206
- - React-RCTImage (0.63.5):
207
- - FBReactNativeSpec (= 0.63.5)
208
- - Folly (= 2020.01.13.00)
209
- - RCTTypeSafety (= 0.63.5)
210
- - React-Core/RCTImageHeaders (= 0.63.5)
211
- - React-jsi (= 0.63.5)
212
- - React-RCTNetwork (= 0.63.5)
213
- - ReactCommon/turbomodule/core (= 0.63.5)
214
- - React-RCTLinking (0.63.5):
215
- - FBReactNativeSpec (= 0.63.5)
216
- - React-Core/RCTLinkingHeaders (= 0.63.5)
217
- - React-jsi (= 0.63.5)
218
- - ReactCommon/turbomodule/core (= 0.63.5)
219
- - React-RCTNetwork (0.63.5):
220
- - FBReactNativeSpec (= 0.63.5)
221
- - Folly (= 2020.01.13.00)
222
- - RCTTypeSafety (= 0.63.5)
223
- - React-Core/RCTNetworkHeaders (= 0.63.5)
224
- - React-jsi (= 0.63.5)
225
- - ReactCommon/turbomodule/core (= 0.63.5)
226
- - React-RCTSettings (0.63.5):
227
- - FBReactNativeSpec (= 0.63.5)
228
- - Folly (= 2020.01.13.00)
229
- - RCTTypeSafety (= 0.63.5)
230
- - React-Core/RCTSettingsHeaders (= 0.63.5)
231
- - React-jsi (= 0.63.5)
232
- - ReactCommon/turbomodule/core (= 0.63.5)
233
- - React-RCTText (0.63.5):
234
- - React-Core/RCTTextHeaders (= 0.63.5)
235
- - React-RCTVibration (0.63.5):
236
- - FBReactNativeSpec (= 0.63.5)
237
- - Folly (= 2020.01.13.00)
238
- - React-Core/RCTVibrationHeaders (= 0.63.5)
239
- - React-jsi (= 0.63.5)
240
- - ReactCommon/turbomodule/core (= 0.63.5)
241
- - ReactCommon/turbomodule/core (0.63.5):
242
- - DoubleConversion
243
- - Folly (= 2020.01.13.00)
244
- - glog
245
- - React-callinvoker (= 0.63.5)
246
- - React-Core (= 0.63.5)
247
- - React-cxxreact (= 0.63.5)
248
- - React-jsi (= 0.63.5)
249
- - Yoga (1.14.0)
250
-
251
- DEPENDENCIES:
252
- - AppLovinSDK (= 12.5.0)
253
- - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
254
- - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
255
- - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`)
256
- - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
257
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
258
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
259
- - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
260
- - React (from `../node_modules/react-native/`)
261
- - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
262
- - React-Core (from `../node_modules/react-native/`)
263
- - React-Core/DevSupport (from `../node_modules/react-native/`)
264
- - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
265
- - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
266
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
267
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
268
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
269
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
270
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
271
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
272
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
273
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
274
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
275
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
276
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
277
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
278
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
279
- - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
280
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
281
-
282
- SPEC REPOS:
283
- trunk:
284
- - AppLovinSDK
285
- - boost-for-react-native
286
-
287
- EXTERNAL SOURCES:
288
- DoubleConversion:
289
- :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
290
- FBLazyVector:
291
- :path: "../node_modules/react-native/Libraries/FBLazyVector"
292
- FBReactNativeSpec:
293
- :path: "../node_modules/react-native/Libraries/FBReactNativeSpec"
294
- Folly:
295
- :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
296
- glog:
297
- :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
298
- RCTRequired:
299
- :path: "../node_modules/react-native/Libraries/RCTRequired"
300
- RCTTypeSafety:
301
- :path: "../node_modules/react-native/Libraries/TypeSafety"
302
- React:
303
- :path: "../node_modules/react-native/"
304
- React-callinvoker:
305
- :path: "../node_modules/react-native/ReactCommon/callinvoker"
306
- React-Core:
307
- :path: "../node_modules/react-native/"
308
- React-CoreModules:
309
- :path: "../node_modules/react-native/React/CoreModules"
310
- React-cxxreact:
311
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
312
- React-jsi:
313
- :path: "../node_modules/react-native/ReactCommon/jsi"
314
- React-jsiexecutor:
315
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
316
- React-jsinspector:
317
- :path: "../node_modules/react-native/ReactCommon/jsinspector"
318
- React-RCTActionSheet:
319
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
320
- React-RCTAnimation:
321
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
322
- React-RCTBlob:
323
- :path: "../node_modules/react-native/Libraries/Blob"
324
- React-RCTImage:
325
- :path: "../node_modules/react-native/Libraries/Image"
326
- React-RCTLinking:
327
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
328
- React-RCTNetwork:
329
- :path: "../node_modules/react-native/Libraries/Network"
330
- React-RCTSettings:
331
- :path: "../node_modules/react-native/Libraries/Settings"
332
- React-RCTText:
333
- :path: "../node_modules/react-native/Libraries/Text"
334
- React-RCTVibration:
335
- :path: "../node_modules/react-native/Libraries/Vibration"
336
- ReactCommon:
337
- :path: "../node_modules/react-native/ReactCommon"
338
- Yoga:
339
- :path: "../node_modules/react-native/ReactCommon/yoga"
340
-
341
- SPEC CHECKSUMS:
342
- AppLovinSDK: 626d2aea57ae1bf9280d2012e8e20c521c58ce28
343
- boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
344
- DoubleConversion: cde416483dac037923206447da6e1454df403714
345
- FBLazyVector: 352a8ca9bbc8e2f097d680747a8c97ecef12d469
346
- FBReactNativeSpec: 7dfb84f624136a45727c813ed21d130cd3e61beb
347
- Folly: b73c3869541e86821df3c387eb0af5f65addfab4
348
- glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
349
- RCTRequired: 5520387431beaa5f32aa8726bf746cd5353119fe
350
- RCTTypeSafety: bc90d6e287fa427c50ed770922bac30faf0bbfa3
351
- React: 83a7f231f462b09260a53c5c51005e7659c66890
352
- React-callinvoker: 1c3fdb5562c792212e149637b8a167516bb4b58e
353
- React-Core: 8baca8644a516e772c77e3923697cfe2b58c1606
354
- React-CoreModules: 200c931e17b332024c2e9d878f67b87c00c2c83b
355
- React-cxxreact: 9096ebaeebf6a1475a14448fa8bfc380c13d7882
356
- React-jsi: 7d908b17758178b076a05a254523f1a4227b53d2
357
- React-jsiexecutor: e06a32e42affb2bd89e4c8369349b5fcf787710c
358
- React-jsinspector: fdbc08866b34ae8e1b788ea1cbd9f9d1ca2aa3d6
359
- React-RCTActionSheet: e911b99f0d6fa7711ffc2f62d236b12a32771835
360
- React-RCTAnimation: ad8b853170a059faf31d6add34f67d22391bbe01
361
- React-RCTBlob: 134c7270b6672c9c05383b2e0f7f044ba39d7dda
362
- React-RCTImage: c5c74ba8850a193d73aef8efb8fcbb4f9cad7653
363
- React-RCTLinking: 12468e952704555c8cb4e3de94c7b5a266811326
364
- React-RCTNetwork: e9cfaeb9f3657ae91f895e798734141db6e1af5b
365
- React-RCTSettings: 9a09419bd5e8494f6e146e2c9f5c8e2c6e90ed58
366
- React-RCTText: 393f059d7ec02c733da57240694201e734f0dc84
367
- React-RCTVibration: 3e83f53610d63d3c1fc4db303305e934e73047cc
368
- ReactCommon: b9ff54b6dd22ba4a776eda22d7f83ec27544ca35
369
- Yoga: 0276e9f20976c8568e107cfc1163a8629051adc0
370
-
371
- PODFILE CHECKSUM: 4ec05f3623d0ffabb6875299ff6b6a3048d41059
372
-
373
- COCOAPODS: 1.15.2