pushwoosh-react-native-plugin 6.1.31 → 6.1.32
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/.github/ISSUE_TEMPLATE/bug_report.yml +4 -0
- package/package.json +1 -1
- package/pushwoosh-react-native-plugin.podspec +1 -1
- package/src/android/build.gradle +1 -1
- package/src/android/src/main/java/com/pushwoosh/reactnativeplugin/PushwooshPlugin.java +0 -5
- package/src/ios/Pushwoosh.h +1 -1
- package/src/ios/PushwooshPlugin/Pushwoosh.m +0 -4
- package/src/ios/libPushwoosh.a +0 -0
|
@@ -58,8 +58,12 @@ body:
|
|
|
58
58
|
label: Your Pushwoosh React Native Plugin version
|
|
59
59
|
description: Your React Native Plugin version which was integrated to the app. You may find it on the [releases page](https://github.com/Pushwoosh/pushwoosh-react-native-plugin/releases)
|
|
60
60
|
options:
|
|
61
|
+
- 6.1.32
|
|
62
|
+
- 6.1.31
|
|
61
63
|
- 6.1.30
|
|
64
|
+
- 6.1.29
|
|
62
65
|
- 6.1.28
|
|
66
|
+
- 6.1.27
|
|
63
67
|
- 6.1.26
|
|
64
68
|
- 6.1.25
|
|
65
69
|
- 6.1.23
|
package/package.json
CHANGED
package/src/android/build.gradle
CHANGED
|
@@ -275,11 +275,6 @@ public class PushwooshPlugin extends ReactContextBaseJavaModule implements Lifec
|
|
|
275
275
|
callback.invoke(Pushwoosh.getInstance().getUserId());
|
|
276
276
|
}
|
|
277
277
|
|
|
278
|
-
@ReactMethod
|
|
279
|
-
public void setUserId(String userId) {
|
|
280
|
-
PushwooshInApp.getInstance().setUserId(userId);
|
|
281
|
-
}
|
|
282
|
-
|
|
283
278
|
@ReactMethod
|
|
284
279
|
public void setUserId(String userId, final Callback success, final Callback error) {
|
|
285
280
|
Pushwoosh.getInstance().setUserId(userId, new com.pushwoosh.function.Callback<Boolean, SetUserIdException>() {
|
package/src/ios/Pushwoosh.h
CHANGED
|
@@ -278,10 +278,6 @@ RCT_EXPORT_METHOD(getShowPushnotificationAlert:(RCTResponseSenderBlock)callback)
|
|
|
278
278
|
}
|
|
279
279
|
}
|
|
280
280
|
|
|
281
|
-
RCT_EXPORT_METHOD(setUserId:(NSString*)userId) {
|
|
282
|
-
[[PWInAppManager sharedManager] setUserId:userId];
|
|
283
|
-
}
|
|
284
|
-
|
|
285
281
|
RCT_EXPORT_METHOD(setUserId:(NSString*)userId success:(RCTResponseSenderBlock)successCallback error:(RCTResponseSenderBlock)errorCallback) {
|
|
286
282
|
|
|
287
283
|
[[PWInAppManager sharedManager] setUserId:userId completion:^(NSError *error) {
|
package/src/ios/libPushwoosh.a
CHANGED
|
Binary file
|