@umituz/react-native-settings 4.23.109 → 4.23.111
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-settings",
|
|
3
|
-
"version": "4.23.
|
|
3
|
+
"version": "4.23.111",
|
|
4
4
|
"description": "Complete settings hub for React Native apps - consolidated package with settings, localization, about, legal, appearance, feedback, FAQs, rating, and gamification",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -181,13 +181,12 @@ export const logError = (
|
|
|
181
181
|
...context?.additionalInfo,
|
|
182
182
|
};
|
|
183
183
|
|
|
184
|
-
//
|
|
184
|
+
// Log errors in development mode
|
|
185
185
|
if (typeof __DEV__ !== "undefined" && __DEV__) {
|
|
186
186
|
console.error("[Error]", logData);
|
|
187
187
|
}
|
|
188
188
|
|
|
189
|
-
//
|
|
190
|
-
// ErrorTracking.captureException(error, logData);
|
|
189
|
+
// Note: Apps can integrate error tracking services (e.g., Sentry) by wrapping this function
|
|
191
190
|
};
|
|
192
191
|
|
|
193
192
|
/**
|