diff --git a/CHANGELOG.md b/CHANGELOG.md index cd4d319..9dba0fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,13 @@ # PhotoEditor SDK - Changelog +## 10.10.13 +### Fixed +* Improve Android editor action bar safe-area handling in landscape so edge buttons stay accessible on devices with system gesture or cutout insets. +* [Serialization] Fixed Android shadows adjustment being written with half the configured value. +* Added backward-compatible read conversion for serializations exported by older Android SDK versions, so existing files restore the intended shadows value. +* Harden Android editor entry points against external launches by marking the SDK editor and camera activities as non-exported. +### Added +* Added a `SaveSettings.useInternalCacheForUriPermissions` opt-in on Android so temporary URI copies can be kept in the app's internal cache directory when `saveUriPermissions` is enabled. + ## v10.10.12 ### Fixed * [Gradle Plugin] Fixed AGP 9 compatibility for projects using built-in Kotlin. diff --git a/build.gradle b/build.gradle index 7c153f4..77775f2 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { ext.kotlin_version = '1.8.22' ext.ksp_version = '1.8.22-1.0.11' - ext.pesdk_version = '10.10.12' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases + ext.pesdk_version = '10.10.13' // Insert the latest SDK version here. You will find it here https://github.com/imgly/pesdk-android-demo/releases repositories { google() gradlePluginPortal()