pushwoosh-react-native-plugin 6.1.53 → 6.1.55

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pushwoosh-react-native-plugin",
3
- "version": "6.1.53",
3
+ "version": "6.1.55",
4
4
  "description": "This plugin allows you to send and receive push notifications. Powered by Pushwoosh (www.pushwoosh.com).",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = "pushwoosh-react-native-plugin"
3
- s.version = "6.1.53"
3
+ s.version = "6.1.55"
4
4
  s.summary = "React Native Pushwoosh Push Notifications module"
5
5
  s.requires_arc = true
6
6
  s.author = 'Pushwoosh'
@@ -15,6 +15,6 @@ Pod::Spec.new do |s|
15
15
  s.static_framework = true
16
16
 
17
17
  s.dependency 'React'
18
- s.dependency 'PushwooshXCFramework', '7.0.22'
18
+ s.dependency 'PushwooshXCFramework', '7.0.29'
19
19
  s.dependency 'PushwooshInboxUIXCFramework'
20
20
  end
@@ -37,7 +37,7 @@ android {
37
37
  }
38
38
 
39
39
  ext {
40
- pushwoosh = "6.7.54"
40
+ pushwoosh = "6.7.59"
41
41
  }
42
42
 
43
43
  dependencies {
@@ -110,7 +110,7 @@ public class PushwooshPlugin extends ReactContextBaseJavaModule implements Lifec
110
110
  if (config.hasKey("reverse_proxy_url")) {
111
111
  String proxyUrl = config.getString("reverse_proxy_url");
112
112
  if (!TextUtils.isEmpty(proxyUrl) && NetworkModule.getRequestManager() != null) {
113
- NetworkModule.getRequestManager().setReverseProxyUrl(proxyUrl);
113
+ NetworkModule.getRequestManager().setReverseProxyUrl(proxyUrl, null);
114
114
  }
115
115
  }
116
116