Skip to content
Merged
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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading