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.
package/android/build.gradle
CHANGED
|
@@ -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