react-native-netmera 1.7.4-beta01 → 1.7.4

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/Netmera.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-netmera",
3
- "version": "1.7.4-beta01",
3
+ "version": "1.7.4",
4
4
  "description": "Netmera React Native SDK",
5
5
  "main": "index.ts",
6
6
  "author": "netmera",
package/src/Netmera.ts CHANGED
@@ -158,7 +158,9 @@ export default class Netmera {
158
158
  };
159
159
 
160
160
  static kill = () => {
161
- RNNetmera.kill();
161
+ if (isAndroid()) {
162
+ RNNetmera.kill();
163
+ }
162
164
  };
163
165
 
164
166
  static startDataTransfer = () => {