react-native-netmera 1.7.6-beta02 → 1.7.6-beta03
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/README.md +1 -1
- package/RNNetmera.podspec +1 -1
- package/android/build.gradle +1 -1
- package/ios/RNNetmera.m +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -489,4 +489,4 @@ startDataTransfer() method, the SDK will attempt to resend any requests that wer
|
|
|
489
489
|
Netmera.startDataTransfer();
|
|
490
490
|
```
|
|
491
491
|
|
|
492
|
-
Please explore [our example project](https://github.com/Netmera/Netmera-React-Native-Example) for detailed information.
|
|
492
|
+
Please explore [our example project](https://github.com/Netmera/Netmera-React-Native-Typescript-Example) for detailed information.
|
package/RNNetmera.podspec
CHANGED
package/android/build.gradle
CHANGED
|
@@ -19,7 +19,7 @@ android {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
dependencies {
|
|
22
|
-
implementation 'com.netmera:nmcore:3.
|
|
22
|
+
implementation 'com.netmera:nmcore:3.14.0'
|
|
23
23
|
implementation 'com.netmera:nmfcm:3.12.0'
|
|
24
24
|
implementation 'com.netmera:nmhms:3.11.0'
|
|
25
25
|
implementation 'com.facebook.react:react-native:+'
|
package/ios/RNNetmera.m
CHANGED
|
@@ -191,8 +191,7 @@ RCT_EXPORT_METHOD(fetchInbox:(NSDictionary *)inboxDictionary
|
|
|
191
191
|
[Netmera fetchInboxUsingFilter:filter
|
|
192
192
|
completion:^(NetmeraInbox *inbox, NSError *error) {
|
|
193
193
|
if(error) {
|
|
194
|
-
|
|
195
|
-
reject(ERROR_CODE_INBOX, errorMessage, nil);
|
|
194
|
+
reject(ERROR_CODE_INBOX, ERROR_MESSAGE_INBOX, nil);
|
|
196
195
|
}else{
|
|
197
196
|
self.netmeraInbox = inbox;
|
|
198
197
|
NSMutableArray *array = [[NSMutableArray alloc]init];
|