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
|
Pod::Spec.new do |s|
|
|
2
2
|
s.name = "pushwoosh-react-native-plugin"
|
|
3
|
-
s.version = "6.1.
|
|
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.
|
|
18
|
+
s.dependency 'PushwooshXCFramework', '7.0.29'
|
|
19
19
|
s.dependency 'PushwooshInboxUIXCFramework'
|
|
20
20
|
end
|
package/src/android/build.gradle
CHANGED
|
@@ -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
|
|