react-native-share 9.3.0 → 9.4.1

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.
@@ -27,6 +27,7 @@ if (isNewArchitectureEnabled()) {
27
27
  }
28
28
 
29
29
  android {
30
+ namespace = "cl.json"
30
31
  compileSdkVersion safeExtGet('compileSdkVersion', 28)
31
32
  defaultConfig {
32
33
  minSdkVersion safeExtGet('minSdkVersion', 16)
@@ -161,6 +161,9 @@ public class RNSharePathUtil {
161
161
  final int index = cursor.getColumnIndexOrThrow(column);
162
162
  return cursor.getString(index);
163
163
  }
164
+ } catch (Exception ex) {
165
+ ex.printStackTrace();
166
+ return null;
164
167
  } finally {
165
168
  if (cursor != null) cursor.close();
166
169
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-native-share",
3
3
  "description": "Social share, sending simple data to other apps.",
4
- "version": "9.3.0",
4
+ "version": "9.4.1",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/react-native-community/react-native-share.git"