apps-sdk 2.0.4 → 2.0.5

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": "apps-sdk",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Apps SDK - Compatible with Expo SDK 54 + React 19",
5
5
  "main": "index.js",
6
6
  "author": "ASD",
@@ -333,7 +333,7 @@ class Storage {
333
333
  const pickerResult = await ImagePicker.launchImageLibraryAsync({
334
334
  mediaTypes: ['images'],
335
335
  allowsMultipleSelection: isMultiple,
336
- allowsEditing: !isMultiple,
336
+ allowsEditing: false,
337
337
  quality: 1,
338
338
  ...(isMultiple ? { selectionLimit: safeMaxPerPick } : {}),
339
339
  });