1# Multimedia Changelog 2 3## cl.multimedia.1 APIs of @ohos.multimedia.movingphotoview Changed 4 5**Access Level** 6 7System and public APIs 8 9**Reason for Change** 10 11This change is caused by the SysCap change of MovingphotoView, which is a Media Library capability component developed on the ArkUI framework. Specifically, the ownership of the MovingPhotoView component is changed from ArkUI to Media Library Kit, and SysCap of MovingPhotoView is changed from SystemCapability.ArkUI.ArkUI.Full to SystemCapability.FileManagement.PhotoAccessHelper.Core. 12 13**Change Impact** 14 15This change is a non-compatible change. Only SysCap on which the APIs depend is adjusted, and the API usage is not affected. 16 17Before change: 18 19SysCap of the MovingPhotoView component must be SystemCapability.ArkUI.ArkUI.Full. To determine whether a device supports the MovingPhotoView component, use **canIUse("SystemCapability.ArkUI.ArkUI.Full")**. 20 21After change: 22 23SysCap of the MovingPhotoView component must be SystemCapability.FileManagement.PhotoAccessHelper.Core. To determine whether a device supports the MovingPhotoView component, use **canIUse("SystemCapability.FileManagement.PhotoAccessHelper.Core")**. 24 25**Start API Level** 26 2712 28 29**Change Since** 30 31OpenHarmony SDK 5.0.0.27 32 33**Key API/Component Changes** 34 35All APIs of the @ohos.multimedia.movingphotoview module. 36 37**Adaptation Guide** 38 39The device-define of the SDK contains both SystemCapability.ArkUI.ArkUI.Full and SystemCapability.FileManagement.PhotoAccessHelper.Core, or does not contain either of them. Generally, the code involving the MovingPhotoView component does not need to be adapted. If the **canIUse()** API is used in your code to check whether the MovingPhotoView component is supported, you need to change SysCap passed in by the API. 40