Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/jsActions/mobile-resources-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

### Changed

- We replaced the depricated CameraRoll.saveToCameraRoll with CameraRoll.saveAsset in SaveToPictureLibrary activity.

## [11.3.7] Native Mobile Resources - 2026-3-14

## [1.1.1] Switch
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export async function SaveToPictureLibrary(picture?: mendix.lib.MxObject): Promi

// Save the file as a photo to the camera roll.
try {
const savedUri = await CameraRoll.saveToCameraRoll(url, "auto");
const savedUri = await CameraRoll.saveAsset(url);
return Promise.resolve(savedUri.node.image.uri);
} catch (error) {
return Promise.reject(error);
Expand Down
Loading